Click or drag to resize

EventIdCaptureType Enumeration

Defines EventId capture options

Namespace:  NLog.Extensions.Logging
Assembly:  NLog.Extensions.Logging (in NLog.Extensions.Logging.dll) Version: 5.5.0+5caec9dd9186024b333b5ea4d1c37388ef9c309a
Syntax
[FlagsAttribute]
public enum EventIdCaptureType
Members
  Member nameValueDescription
None0 Skip capture
EventId1 Capture integer Id as "EventId"-property
EventName2 Capture string Name as "EventName"-property
EventIdStruct4 Capture struct EventId as "EventId"-property (with boxing)
EventId_Id8 Capture integer Id as "EventId_Id"-property (Legacy)
EventId_Name16 Capture string Name as "EventId_Name"-property (Legacy)
Legacy28 Captures legacy properties (EventId-struct + EventId_Id + EventId_Name)
See Also