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