1 instantiation of ChannelInfo
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\ManifestBuilder.cs (1)
148channelTab[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\ManifestBuilder.cs (11)
147channelTab ??= new Dictionary<int, ChannelInfo>(4); 185foreach (KeyValuePair<int, ChannelInfo> item in this.channelTab) 314channelTab ??= new Dictionary<int, ChannelInfo>(4); 319if (!channelTab.TryGetValue((int)channel, out ChannelInfo? info)) 369var sortedChannels = new List<KeyValuePair<int, ChannelInfo>>(); 370foreach (KeyValuePair<int, ChannelInfo> p in channelTab) { sortedChannels.Add(p); } 373foreach (KeyValuePair<int, ChannelInfo> kvpair in sortedChannels) 376ChannelInfo channelInfo = kvpair.Value; 633if (channelTab == null || !channelTab.TryGetValue((int)channel, out ChannelInfo? info)) 640channelTab ??= new Dictionary<int, ChannelInfo>(4); 911private Dictionary<int, ChannelInfo>? channelTab;