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: 6.0.0+b2556d03163fe4c7b4484f0ca757e7ee6f8c5e4e
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