36 references to EventSourceSettings
Microsoft.AspNetCore.ConcurrencyLimiter (1)
ConcurrencyLimiterEventSource.cs (1)
31: base(eventSourceName, EventSourceSettings.EtwManifestEventFormat)
Microsoft.AspNetCore.Hosting (2)
Internal\HostingEventSource.cs (2)
23: base("Microsoft.AspNetCore.Hosting", EventSourceSettings.EtwManifestEventFormat) 29: base(eventSourceName, EventSourceSettings.EtwManifestEventFormat)
Microsoft.AspNetCore.Http.Connections (1)
Internal\HttpConnectionsEventSource.cs (1)
31: base(eventSourceName, EventSourceSettings.EtwManifestEventFormat)
Microsoft.Extensions.DependencyInjection (1)
DependencyInjectionEventSource.cs (1)
30private DependencyInjectionEventSource() : base(EventSourceSettings.EtwSelfDescribingEventFormat)
Microsoft.Extensions.Logging.EventSource (1)
LoggingEventSource.cs (1)
129private LoggingEventSource() : base(EventSourceSettings.EtwSelfDescribingEventFormat)
mscorlib (1)
src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
212[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Diagnostics.Tracing.EventSourceSettings))]
netstandard (1)
netstandard.cs (1)
734[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Diagnostics.Tracing.EventSourceSettings))]
PresentationCore (2)
src\Microsoft.DotNet.Wpf\src\Shared\Telemetry\Managed\TelemetryEventSource.cs (2)
158internal TelemetryEventSource(string eventSourceName) : base(eventSourceName, EventSourceSettings.EtwSelfDescribingEventFormat, telemetryTraits) 168protected TelemetryEventSource() : base(EventSourceSettings.EtwSelfDescribingEventFormat, telemetryTraits)
PresentationFramework (2)
src\Microsoft.DotNet.Wpf\src\Shared\Telemetry\Managed\TelemetryEventSource.cs (2)
158internal TelemetryEventSource(string eventSourceName) : base(eventSourceName, EventSourceSettings.EtwSelfDescribingEventFormat, telemetryTraits) 168protected TelemetryEventSource() : base(EventSourceSettings.EtwSelfDescribingEventFormat, telemetryTraits)
System.Diagnostics.DiagnosticSource (1)
System\Diagnostics\DiagnosticSourceEventSource.cs (1)
408: base(EventSourceSettings.EtwSelfDescribingEventFormat)
System.Diagnostics.Tracing (1)
artifacts\obj\System.Diagnostics.Tracing\Debug\net10.0\System.Diagnostics.Tracing.Forwards.cs (1)
25[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Diagnostics.Tracing.EventSourceSettings))]
System.Private.CoreLib (22)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (19)
235private readonly EventSourceSettings m_config; // configuration information 359public EventSourceSettings Settings => m_config; 723: this(EventSourceSettings.EtwManifestEventFormat) 739: this(EventSourceSettings.EtwManifestEventFormat | (throwOnEventWriteErrors ? EventSourceSettings.ThrowOnEventWriteErrors : 0)) 745protected EventSource(EventSourceSettings settings) : this(settings, null) { } 756protected EventSource(EventSourceSettings settings, params string[]? traits) 1613: this(eventSourceGuid, eventSourceName, EventSourceSettings.EtwManifestEventFormat) 1617internal EventSource(Guid eventSourceGuid, string eventSourceName, EventSourceSettings settings, string[]? traits = null) 3834private static EventSourceSettings ValidateSettings(EventSourceSettings settings) 3836const EventSourceSettings evtFormatMask = EventSourceSettings.EtwManifestEventFormat | 3837EventSourceSettings.EtwSelfDescribingEventFormat; 3845settings |= EventSourceSettings.EtwSelfDescribingEventFormat; 3849private bool ThrowOnEventWriteErrors => (m_config & EventSourceSettings.ThrowOnEventWriteErrors) != 0; 3855Debug.Assert(((m_config & EventSourceSettings.EtwManifestEventFormat) != 0) != 3856((m_config & EventSourceSettings.EtwSelfDescribingEventFormat) != 0)); 3857return (m_config & EventSourceSettings.EtwSelfDescribingEventFormat) != 0;
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\TraceLogging\TraceLoggingEventSource.cs (3)
37: this(eventSourceName, EventSourceSettings.EtwSelfDescribingEventFormat) 51EventSourceSettings config) 70EventSourceSettings config,