1 write to stringTab
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (1)
5348
stringTab
= new Dictionary<string, string>();
7 references to stringTab
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (7)
5576
if (
stringTab
.TryGetValue(prefixedEventName, out string? msg))
5579
stringTab
[prefixedEventName] = msg;
5824
var sortedStrings = new string[
stringTab
.Keys.Count];
5825
stringTab
.Keys.CopyTo(sortedStrings, 0);
5869
if (
stringTab
.TryGetValue(key, out string? prevValue) && !prevValue.Equals(value))
5875
stringTab
[key] = value;
5894
stringTab
.TryGetValue(key, out value);