1 instantiation of ChannelInfo
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (1)
5435channelTab[value] = new ChannelInfo { Name = name, Keywords = kwd, Attribs = channelAttribute };
11 references to ChannelInfo
System.Private.CoreLib (11)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (11)
5434channelTab ??= new Dictionary<int, ChannelInfo>(4); 5472foreach (KeyValuePair<int, ChannelInfo> item in this.channelTab) 5601channelTab ??= new Dictionary<int, ChannelInfo>(4); 5606if (!channelTab.TryGetValue((int)channel, out ChannelInfo? info)) 5656var sortedChannels = new List<KeyValuePair<int, ChannelInfo>>(); 5657foreach (KeyValuePair<int, ChannelInfo> p in channelTab) { sortedChannels.Add(p); } 5660foreach (KeyValuePair<int, ChannelInfo> kvpair in sortedChannels) 5663ChannelInfo channelInfo = kvpair.Value; 5920if (channelTab == null || !channelTab.TryGetValue((int)channel, out ChannelInfo? info)) 5927channelTab ??= new Dictionary<int, ChannelInfo>(4); 6198private Dictionary<int, ChannelInfo>? channelTab;