 | EventIdCaptureType Enumeration |
Defines EventId capture options
Namespace:
NLog.Extensions.Logging
Assembly:
NLog.Extensions.Logging (in NLog.Extensions.Logging.dll) Version: 6.0.0+b2556d03163fe4c7b4484f0ca757e7ee6f8c5e4e
Syntax[FlagsAttribute]
public enum EventIdCaptureType
<FlagsAttribute>
Public Enumeration EventIdCaptureType
Dim instance As EventIdCaptureType
[<FlagsAttribute>]
type EventIdCaptureType
Members
| Member name | Value | Description |
---|
| None | 0 |
Skip capture
|
| EventId | 1 |
Capture integer Id as "EventId"-property
|
| EventName | 2 |
Capture string Name as "EventName"-property
|
| EventIdStruct | 4 |
Capture struct EventId as "EventId"-property (with boxing)
|
| EventId_Id | 8 |
Capture integer Id as "EventId_Id"-property (Legacy)
|
| EventId_Name | 16 |
Capture string Name as "EventId_Name"-property (Legacy)
|
| Legacy | 28 |
Captures legacy properties (EventId-struct + EventId_Id + EventId_Name)
|
See Also