|
| static void | OnEvent (this IEventSource source, IEvent @event) |
| |
| static void | OnError (this IEventSource source, Exception error) |
| |
| static void | OnError (this IEventSource source, Exception error, int errorCode) |
| |
| static void | OnError (this IEventSource source, Exception error, ErrorLevel level) |
| |
| static void | OnError (this IEventSource source, Exception error, int errorCode, ErrorLevel level) |
| |
| static void | OnInformation (this IEventSource source, string message) |
| |
| static void | OnInformation (this IEventSource source, string message, InformationLevel level) |
| |
| static void | OnVerbose (this IEventSource source, string message) |
| |
| static void | OnDebug (this IEventSource source, string message) |
| |
| static void | OnPerformance (this IEventSource source, string key, object value) |
| |
Definition at line 21 of file EventSourceExtensions.cs.
| static void Deveel.Data.Diagnostics.EventSourceExtensions.OnDebug |
( |
this IEventSource |
source, |
|
|
string |
message |
|
) |
| |
|
inlinestatic |
| static void Deveel.Data.Diagnostics.EventSourceExtensions.OnError |
( |
this IEventSource |
source, |
|
|
Exception |
error |
|
) |
| |
|
inlinestatic |
| static void Deveel.Data.Diagnostics.EventSourceExtensions.OnError |
( |
this IEventSource |
source, |
|
|
Exception |
error, |
|
|
int |
errorCode |
|
) |
| |
|
inlinestatic |
Definition at line 30 of file EventSourceExtensions.cs.
ErrorLevel
In case of error messages, this enumerates the level of severity of the error.
static void OnError(this IEventSource source, Exception error)
| static void Deveel.Data.Diagnostics.EventSourceExtensions.OnError |
( |
this IEventSource |
source, |
|
|
Exception |
error, |
|
|
ErrorLevel |
level |
|
) |
| |
|
inlinestatic |
| static void Deveel.Data.Diagnostics.EventSourceExtensions.OnError |
( |
this IEventSource |
source, |
|
|
Exception |
error, |
|
|
int |
errorCode, |
|
|
ErrorLevel |
level |
|
) |
| |
|
inlinestatic |
Definition at line 38 of file EventSourceExtensions.cs.
39 var errorEvent =
new ErrorEvent(error, errorCode, level);
40 source.OnEvent(errorEvent);
| static void Deveel.Data.Diagnostics.EventSourceExtensions.OnEvent |
( |
this IEventSource |
source, |
|
|
IEvent @ |
event |
|
) |
| |
|
inlinestatic |
| static void Deveel.Data.Diagnostics.EventSourceExtensions.OnInformation |
( |
this IEventSource |
source, |
|
|
string |
message |
|
) |
| |
|
inlinestatic |
| static void Deveel.Data.Diagnostics.EventSourceExtensions.OnInformation |
( |
this IEventSource |
source, |
|
|
string |
message, |
|
|
InformationLevel |
level |
|
) |
| |
|
inlinestatic |
| static void Deveel.Data.Diagnostics.EventSourceExtensions.OnPerformance |
( |
this IEventSource |
source, |
|
|
string |
key, |
|
|
object |
value |
|
) |
| |
|
inlinestatic |
| static void Deveel.Data.Diagnostics.EventSourceExtensions.OnVerbose |
( |
this IEventSource |
source, |
|
|
string |
message |
|
) |
| |
|
inlinestatic |
The documentation for this class was generated from the following file: