3 writes to channelTab
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (3)
5414channelTab ??= new Dictionary<int, ChannelInfo>(4); 5581channelTab ??= new Dictionary<int, ChannelInfo>(4); 5907channelTab ??= 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)
5415channelTab[value] = new ChannelInfo { Name = name, Keywords = kwd, Attribs = channelAttribute }; 5435if (this.channelTab == null) 5443foreach (int item in this.channelTab.Keys) 5452foreach (KeyValuePair<int, ChannelInfo> item in this.channelTab) 5583if (channelTab.Count == MaxCountChannels) 5586if (!channelTab.TryGetValue((int)channel, out ChannelInfo? info)) 5633if (channelTab != null) 5637foreach (KeyValuePair<int, ChannelInfo> p in channelTab) { sortedChannels.Add(p); } 5900if (channelTab == null || !channelTab.TryGetValue((int)channel, out ChannelInfo? info)) 5914if (!channelTab.TryGetValue((int)channel, out info))