System.Diagnostics.Tracing.EventWrittenEventArgs
namespace System.Diagnostics.Tracing
{
public class EventWrittenEventArgs : EventArgs
{
public Guid ActivityId { get; }
public EventChannel Channel { get; }
public int EventId { get; }
public string EventName { get; }
public EventSource EventSource { get; }
public EventKeywords Keywords { get; }
public EventLevel Level { get; }
public string Message { get; }
public EventOpcode Opcode { get; }
public ReadOnlyCollection<object> Payload { get; }
public ReadOnlyCollection<string> PayloadNames { get; }
public Guid RelatedActivityId { get; }
public EventTags Tags { get; }
public EventTask Task { get; }
public byte Version { get; }
}
}