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)
159internal TelemetryEventSource(string eventSourceName) : base(eventSourceName, EventSourceSettings.EtwSelfDescribingEventFormat, telemetryTraits) 169protected TelemetryEventSource() : base(EventSourceSettings.EtwSelfDescribingEventFormat, telemetryTraits)
PresentationFramework (2)
src\Microsoft.DotNet.Wpf\src\Shared\Telemetry\Managed\TelemetryEventSource.cs (2)
159internal TelemetryEventSource(string eventSourceName) : base(eventSourceName, EventSourceSettings.EtwSelfDescribingEventFormat, telemetryTraits) 169protected 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)
236private readonly EventSourceSettings m_config; // configuration information 360public EventSourceSettings Settings => m_config; 724: this(EventSourceSettings.EtwManifestEventFormat) 740: this(EventSourceSettings.EtwManifestEventFormat | (throwOnEventWriteErrors ? EventSourceSettings.ThrowOnEventWriteErrors : 0)) 746protected EventSource(EventSourceSettings settings) : this(settings, null) { } 757protected EventSource(EventSourceSettings settings, params string[]? traits) 1614: this(eventSourceGuid, eventSourceName, EventSourceSettings.EtwManifestEventFormat) 1618internal EventSource(Guid eventSourceGuid, string eventSourceName, EventSourceSettings settings, string[]? traits = null) 3846private static EventSourceSettings ValidateSettings(EventSourceSettings settings) 3848const EventSourceSettings evtFormatMask = EventSourceSettings.EtwManifestEventFormat | 3849EventSourceSettings.EtwSelfDescribingEventFormat; 3857settings |= EventSourceSettings.EtwSelfDescribingEventFormat; 3861private bool ThrowOnEventWriteErrors => (m_config & EventSourceSettings.ThrowOnEventWriteErrors) != 0; 3867Debug.Assert(((m_config & EventSourceSettings.EtwManifestEventFormat) != 0) != 3868((m_config & EventSourceSettings.EtwSelfDescribingEventFormat) != 0)); 3869return (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,