Represents the system-level event metadata for a WCF trace event. Maps to the "System" XML element in the Windows event log schema. Contains information about the event identifier, type, severity, timestamp, source, correlation, and execution context.
SystemEvent
01 Syntax
02 Properties
| Name | Overloads | Summary |
|---|---|---|
| EventID | 1 | Gets or sets the event identifier that uniquely identifies the type of event. |
| Type | 1 | Gets or sets the type of the event (e.g., Error, Warning, Information, etc.). |
| SubType | 1 | Gets or sets the sub-type of the event, providing additional classification detail. |
| Level | 1 | Gets or sets the severity level of the event (e.g., Critical, Error, Warning, Information, Verbose). |
| TimeCreated | 1 | Gets or sets the timestamp when the event was created. |
| Source | 1 | Gets or sets the source of the event, identifying the component or service that generated the trace. |
| Correlation | 1 | Gets or sets the correlation information for this event, used to correlate related trace events across activities. |
| Execution | 1 | Gets or sets the execution context information, including process and thread identifiers. |
| Channel | 1 | Gets or sets the event channel through which the event was logged. |
| Computer | 1 | Gets or sets the name of the computer where the event originated. |
03 Members
Gets or sets the event identifier that uniquely identifies the type of event.
A string representing the event ID.
Gets or sets the type of the event (e.g., Error, Warning, Information, etc.).
A string indicating the event type.
Gets or sets the sub-type of the event, providing additional classification detail.
A TagValue instance containing the sub-type name and value.
Gets or sets the severity level of the event (e.g., Critical, Error, Warning, Information, Verbose).
A string representing the event level.
Gets or sets the timestamp when the event was created.
A SystemTime instance containing the creation time.
Gets or sets the source of the event, identifying the component or service that generated the trace.
A TagValue instance containing the source name and value.
Gets or sets the correlation information for this event, used to correlate related trace events across activities.
A SystemEvent.Correlation instance containing the activity identifier.
Gets or sets the execution context information, including process and thread identifiers.
An SystemEvent.Execution instance containing process and thread details.
Gets or sets the event channel through which the event was logged.
A string representing the event channel.
Gets or sets the name of the computer where the event originated.
A string containing the computer name.