1 instantiation of ChannelInfo
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (1)
5430channelTab[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)
5429channelTab ??= new Dictionary<int, ChannelInfo>(4); 5467foreach (KeyValuePair<int, ChannelInfo> item in this.channelTab) 5596channelTab ??= new Dictionary<int, ChannelInfo>(4); 5601if (!channelTab.TryGetValue((int)channel, out ChannelInfo? info)) 5651var sortedChannels = new List<KeyValuePair<int, ChannelInfo>>(); 5652foreach (KeyValuePair<int, ChannelInfo> p in channelTab) { sortedChannels.Add(p); } 5655foreach (KeyValuePair<int, ChannelInfo> kvpair in sortedChannels) 5658ChannelInfo channelInfo = kvpair.Value; 5915if (channelTab == null || !channelTab.TryGetValue((int)channel, out ChannelInfo? info)) 5922channelTab ??= new Dictionary<int, ChannelInfo>(4); 6193private Dictionary<int, ChannelInfo>? channelTab;