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