3 writes to channelTab
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (3)
5443channelTab ??= new Dictionary<int, ChannelInfo>(4); 5610channelTab ??= new Dictionary<int, ChannelInfo>(4); 5936channelTab ??= new Dictionary<int, ChannelInfo>(4);
11 references to channelTab
System.Private.CoreLib (11)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (11)
5444channelTab[value] = new ChannelInfo { Name = name, Keywords = kwd, Attribs = channelAttribute }; 5464if (this.channelTab == null) 5472foreach (int item in this.channelTab.Keys) 5481foreach (KeyValuePair<int, ChannelInfo> item in this.channelTab) 5612if (channelTab.Count == MaxCountChannels) 5615if (!channelTab.TryGetValue((int)channel, out ChannelInfo? info)) 5662if (channelTab != null) 5666foreach (KeyValuePair<int, ChannelInfo> p in channelTab) { sortedChannels.Add(p); } 5929if (channelTab == null || !channelTab.TryGetValue((int)channel, out ChannelInfo? info)) 5943if (!channelTab.TryGetValue((int)channel, out info))