| EventIdCaptureType Enumeration |
Defines EventId capture options
Namespace:
NLog.Extensions.Logging
Assembly:
NLog.Extensions.Logging (in NLog.Extensions.Logging.dll) Version: 5.3.13+9106fa3b6a3bdf3fbae3d40dbd52b6c23eb3b9f3
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