53 references to EventSourceSettings
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 (2)
System\Diagnostics\DiagnosticSourceEventSource.cs (1)
410: base(DiagnosticSourceEventSourceName, EventSourceSettings.EtwSelfDescribingEventFormat)
System\Diagnostics\Metrics\MetricsEventSource.cs (1)
102: base(MetricsEventSourceName, EventSourceSettings.EtwManifestEventFormat)
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.Net.Http (2)
System\Net\Http\HttpTelemetry.cs (1)
18: base(HttpTelemetryName, EventSourceSettings.EtwManifestEventFormat)
System\Net\Http\NetEventSource.Http.cs (1)
15public NetEventSource() : base(NetEventSourceName, EventSourceSettings.EtwManifestEventFormat) { }
System.Net.HttpListener (1)
System\Net\NetEventSource.HttpListener.cs (1)
13public NetEventSource() : base(NetEventSourceName, EventSourceSettings.EtwManifestEventFormat) { }
System.Net.Mail (1)
System\Net\Mail\NetEventSource.Mail.cs (1)
15public NetEventSource() : base(NetEventSourceName, EventSourceSettings.EtwManifestEventFormat) { }
System.Net.NameResolution (2)
System\Net\NameResolutionTelemetry.cs (1)
18: base(NameResolutionTelemetryName, EventSourceSettings.EtwManifestEventFormat)
System\Net\NetEventSource.NameResolution.cs (1)
13public NetEventSource() : base(NetEventSourceName, EventSourceSettings.EtwManifestEventFormat) { }
System.Net.NetworkInformation (1)
System\Net\NetworkInformation\NetEventSource.NetworkInformation.cs (1)
15public NetEventSource() : base(NetEventSourceName, EventSourceSettings.EtwManifestEventFormat) { }
System.Net.Primitives (1)
System\Net\NetEventSource.Primitives.cs (1)
13public NetEventSource() : base(NetEventSourceName, EventSourceSettings.EtwManifestEventFormat) { }
System.Net.Quic (1)
System\Net\Quic\NetEventSource.Quic.cs (1)
14public NetEventSource() : base(NetEventSourceName, EventSourceSettings.EtwManifestEventFormat) { }
System.Net.Requests (1)
System\Net\NetEventSource.Requests.cs (1)
13public NetEventSource() : base(NetEventSourceName, EventSourceSettings.EtwManifestEventFormat) { }
System.Net.Security (2)
System\Net\Security\NetEventSource.Security.cs (1)
19public NetEventSource() : base(NetEventSourceName, EventSourceSettings.EtwManifestEventFormat) { }
System\Net\Security\NetSecurityTelemetry.cs (1)
18: base(NetSecurityTelemetryName, EventSourceSettings.EtwManifestEventFormat)
System.Net.Sockets (2)
System\Net\Sockets\NetEventSource.Sockets.cs (1)
15public NetEventSource() : base(NetEventSourceName, EventSourceSettings.EtwManifestEventFormat) { }
System\Net\Sockets\SocketsTelemetry.cs (1)
16: base(SocketsTelemetryName, EventSourceSettings.EtwManifestEventFormat)
System.Net.WebSockets (1)
System\Net\WebSockets\NetEventSource.WebSockets.cs (1)
16public NetEventSource() : base(NetEventSourceName, EventSourceSettings.EtwManifestEventFormat) { }
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) 1616: this(eventSourceGuid, eventSourceName, EventSourceSettings.EtwManifestEventFormat) 1620internal EventSource(Guid eventSourceGuid, string eventSourceName, EventSourceSettings settings, string[]? traits = null) 3845private static EventSourceSettings ValidateSettings(EventSourceSettings settings) 3847const EventSourceSettings evtFormatMask = EventSourceSettings.EtwManifestEventFormat | 3848EventSourceSettings.EtwSelfDescribingEventFormat; 3856settings |= EventSourceSettings.EtwSelfDescribingEventFormat; 3860private bool ThrowOnEventWriteErrors => (m_config & EventSourceSettings.ThrowOnEventWriteErrors) != 0; 3866Debug.Assert(((m_config & EventSourceSettings.EtwManifestEventFormat) != 0) != 3867((m_config & EventSourceSettings.EtwSelfDescribingEventFormat) != 0)); 3868return (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,
System.Private.Xml (1)
System\Xml\Serialization\XmlSerializationEventSource.cs (1)
14: base(XmlSerializationEventSourceName, EventSourceSettings.EtwManifestEventFormat)
System.Security.Cryptography (1)
System\Security\Cryptography\X509Certificates\OpenSslX509ChainEventSource.cs (1)
16: base(OpenSslX509ChainEventSourceName, EventSourceSettings.EtwManifestEventFormat)