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.3.13+9106fa3b6a3bdf3fbae3d40dbd52b6c23eb3b9f3
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