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