System\Runtime\Diagnostics\EtwDiagnosticTrace.cs (16)
49static EventDescriptor transferEventDescriptor = new EventDescriptor(499, 0, (byte)TraceChannel.Analytic, (byte)TraceEventLevel.LogAlways, (byte)TraceEventOpcode.Info, 0x0, 0x20000000001A0065);
228public void Event(int eventId, TraceEventLevel traceEventLevel, TraceChannel channel, string description)
343writer.WriteAttributeString(DiagnosticStrings.ChannelTag, EtwDiagnosticTrace.LookupChannel((TraceChannel)eventDescriptor.Channel));
424static string LookupChannel(TraceChannel traceChannel)
429case TraceChannel.Admin:
432case TraceChannel.Analytic:
435case TraceChannel.Application:
438case TraceChannel.Debug:
441case TraceChannel.Operational:
444case TraceChannel.Perf:
577static EventDescriptor GetEventDescriptor(int eventId, TraceChannel channel, TraceEventLevel traceEventLevel)
583if (channel == TraceChannel.Admin)
587else if (channel == TraceChannel.Operational)
591else if (channel == TraceChannel.Analytic)
595else if (channel == TraceChannel.Debug)
599else if (channel == TraceChannel.Perf)