1 instantiation of FrameworkEventSource
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\FrameworkEventSource.cs (1)
14
public static readonly FrameworkEventSource Log = new
FrameworkEventSource
();
17 references to FrameworkEventSource
System.Private.CoreLib (17)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\FrameworkEventSource.cs (1)
14
public static readonly
FrameworkEventSource
Log = new FrameworkEventSource();
src\libraries\System.Private.CoreLib\src\System\Threading\ThreadPoolWorkQueue.cs (10)
600
if (!
FrameworkEventSource
.Log.IsEnabled())
615
_loggingEnabled =
FrameworkEventSource
.Log.IsEnabled(EventLevel.Verbose,
FrameworkEventSource
.Keywords.ThreadPool |
FrameworkEventSource
.Keywords.ThreadTransfer);
635
if (_loggingEnabled &&
FrameworkEventSource
.Log.IsEnabled())
636
FrameworkEventSource
.Log.ThreadPoolEnqueueWorkObject(callback);
704
if (_loggingEnabled &&
FrameworkEventSource
.Log.IsEnabled())
705
FrameworkEventSource
.Log.ThreadPoolEnqueueWorkObject(workItem);
1132
if (workQueue._loggingEnabled &&
FrameworkEventSource
.Log.IsEnabled())
1134
FrameworkEventSource
.Log.ThreadPoolDequeueWorkObject(workItem);
src\libraries\System.Private.CoreLib\src\System\Threading\Timer.cs (6)
553
if (
FrameworkEventSource
.Log.IsEnabled(EventLevel.Informational,
FrameworkEventSource
.Keywords.ThreadTransfer))
554
FrameworkEventSource
.Log.ThreadTransferSendObj(this, 1, string.Empty, true, (int)dueTime, (int)period);
707
if (
FrameworkEventSource
.Log.IsEnabled(EventLevel.Informational,
FrameworkEventSource
.Keywords.ThreadTransfer))
708
FrameworkEventSource
.Log.ThreadTransferReceiveObj(this, 1, string.Empty);