1 instantiation of NetEventSource
System.Net.Quic (1)
src\libraries\Common\src\System\Net\Logging\NetEventSource.Common.cs (1)
38public static readonly NetEventSource Log = new NetEventSource();
107 references to NetEventSource
System.Net.Quic (107)
src\libraries\Common\src\System\Net\Logging\NetEventSource.Common.cs (1)
38public static readonly NetEventSource Log = new NetEventSource();
src\libraries\Common\src\System\Net\SafeHandleCache.cs (10)
55if (NetEventSource.Log.IsEnabled()) 57NetEventSource.Info(this, $"Found cached {handle}."); 85if (NetEventSource.Log.IsEnabled()) 87NetEventSource.Info(this, $"Discarding {handle} (preferring cached {cached})."); 121if (NetEventSource.Log.IsEnabled()) 123NetEventSource.Info(this, $"Current size: {_cache.Count}."); 135if (NetEventSource.Log.IsEnabled()) 137NetEventSource.Info(this, $"Evicting cached {handle}."); 148if (NetEventSource.Log.IsEnabled()) 150NetEventSource.Info(this, $"New size: {_cache.Count}.");
src\libraries\Common\src\System\Net\Security\SslKeyLogger.cs (2)
34if (NetEventSource.Log.IsEnabled()) 36NetEventSource.Error(null, $"Failed to open SSL key log file '{s_keyLogFile}': {ex}");
System\Net\Quic\Internal\MsQuicApi.cs (16)
83if (NetEventSource.Log.IsEnabled()) 85NetEventSource.Info(null, NotSupportedReason); 106if (NetEventSource.Log.IsEnabled()) 108NetEventSource.Info(null, NotSupportedReason); 120if (NetEventSource.Log.IsEnabled()) 122NetEventSource.Info(null, NotSupportedReason); 138if (NetEventSource.Log.IsEnabled()) 140NetEventSource.Error(null, $"Cannot retrieve {nameof(QUIC_PARAM_GLOBAL_LIBRARY_VERSION)} from MsQuic library: '{status}'."); 151if (NetEventSource.Log.IsEnabled()) 153NetEventSource.Error(null, $"Cannot retrieve {nameof(QUIC_PARAM_GLOBAL_LIBRARY_GIT_HASH)} from MsQuic library: '{status}'."); 164if (NetEventSource.Log.IsEnabled()) 166NetEventSource.Info(null, NotSupportedReason); 171if (NetEventSource.Log.IsEnabled()) 173NetEventSource.Info(null, $"Loaded MsQuic library '{MsQuicLibraryVersion}'."); 188if (NetEventSource.Log.IsEnabled()) 190NetEventSource.Info(null, NotSupportedReason);
System\Net\Quic\Internal\MsQuicConfiguration.cs (4)
54if (NetEventSource.Log.IsEnabled()) 56NetEventSource.Info(options, $"'{certificate}' not selected because it doesn't have a private key."); 71if (NetEventSource.Log.IsEnabled()) 73NetEventSource.Info(options, $"'{certificate}' not selected because it doesn't have a private key.");
System\Net\Quic\Internal\MsQuicSafeHandle.cs (8)
38if (NetEventSource.Log.IsEnabled()) 40NetEventSource.Info(this, $"{this} MsQuicSafeHandle created"); 65if (NetEventSource.Log.IsEnabled()) 67NetEventSource.Info(this, $"{this} MsQuicSafeHandle released"); 121if (NetEventSource.Log.IsEnabled()) 123NetEventSource.Info(this, $"{this} {_parent} ref count incremented"); 138if (NetEventSource.Log.IsEnabled()) 140NetEventSource.Info(this, $"{this} {_parent} ref count decremented");
System\Net\Quic\Internal\MsQuicTlsSecret.cs (2)
35if (NetEventSource.Log.IsEnabled()) 37NetEventSource.Error(handle, $"Failed to set native memory for TLS secret: {ex}");
System\Net\Quic\QuicConnection.cs (20)
260if (NetEventSource.Log.IsEnabled()) 262NetEventSource.Info(this, $"{this} New outbound connection."); 425if (NetEventSource.Log.IsEnabled()) 427NetEventSource.Info(this, $"{this} New outbound {type} stream {stream}."); 508if (NetEventSource.Log.IsEnabled()) 510NetEventSource.Info(this, $"{this} Closing connection, Error code = {errorCode}"); 538if (NetEventSource.Log.IsEnabled()) 540NetEventSource.Info(this, $"{this} Connection connected {LocalEndPoint} -> {RemoteEndPoint} for {_negotiatedApplicationProtocol} protocol"); 587if (NetEventSource.Log.IsEnabled()) 590NetEventSource.Info(this, $"{this} New inbound {type} stream {stream}, Id = {stream.Id}."); 595if (NetEventSource.Log.IsEnabled()) 597NetEventSource.Error(this, $"{this} Unable to enqueue incoming stream {stream}"); 652if (NetEventSource.Log.IsEnabled()) 654NetEventSource.Error(null, $"Received event {connectionEvent->Type} for [conn][{(nint)connection:X11}] while connection is already disposed"); 662if (NetEventSource.Log.IsEnabled()) 664NetEventSource.Info(instance, $"{instance} Received event {connectionEvent->Type} {connectionEvent->ToString()}"); 670if (NetEventSource.Log.IsEnabled()) 672NetEventSource.Error(instance, $"{instance} Exception while processing event {connectionEvent->Type}: {ex}"); 690if (NetEventSource.Log.IsEnabled()) 692NetEventSource.Info(this, $"{this} Disposing.");
System\Net\Quic\QuicConnection.SslConnectionOptions.cs (2)
166if (NetEventSource.Log.IsEnabled()) 168NetEventSource.Error(_connection, $"{_connection} ConnectionCertificateValidationComplete failed with {ThrowHelper.GetErrorMessageForStatus(status)}");
System\Net\Quic\QuicListener.cs (22)
59if (NetEventSource.Log.IsEnabled()) 61NetEventSource.Info(listener, $"{listener} Listener listens on {listener.LocalEndPoint}"); 251if (NetEventSource.Log.IsEnabled()) 253NetEventSource.Info(connection, $"{connection} Connection closed by remote peer"); 276if (NetEventSource.Log.IsEnabled()) 278NetEventSource.Info(connection, $"{connection} Connection handshake stopped by listener"); 289if (NetEventSource.Log.IsEnabled()) 291NetEventSource.Error(connection, $"{connection} Connection handshake timed out: {oce}"); 307if (NetEventSource.Log.IsEnabled()) 309NetEventSource.Error(connection, $"{connection} Connection handshake failed: {ex}"); 328if (NetEventSource.Log.IsEnabled()) 330NetEventSource.Info(this, $"{this} Refusing connection from {MsQuicHelpers.QuicAddrToIPEndPoint(data.Info->RemoteAddress)} due to backlog limit"); 339if (NetEventSource.Log.IsEnabled()) 341NetEventSource.Info(this, $"{this} New inbound connection {connection}."); 376if (NetEventSource.Log.IsEnabled()) 378NetEventSource.Error(null, $"Received event {listenerEvent->Type} for [list][{(nint)listener:X11}] while listener is already disposed"); 386if (NetEventSource.Log.IsEnabled()) 388NetEventSource.Info(instance, $"{instance} Received event {listenerEvent->Type} {listenerEvent->ToString()}"); 394if (NetEventSource.Log.IsEnabled()) 396NetEventSource.Error(instance, $"{instance} Exception while processing event {listenerEvent->Type}: {ex}"); 413if (NetEventSource.Log.IsEnabled()) 415NetEventSource.Info(this, $"{this} Disposing.");
System\Net\Quic\QuicStream.cs (20)
274if (NetEventSource.Log.IsEnabled()) 276NetEventSource.Info(this, $"{this} Stream reading into memory of '{buffer.Length}' bytes."); 335if (NetEventSource.Log.IsEnabled()) 337NetEventSource.Info(this, $"{this} Stream read '{totalCopied}' bytes."); 361if (NetEventSource.Log.IsEnabled()) 363NetEventSource.Info(this, $"{this} Stream writing memory of '{buffer.Length}' bytes while {(completeWrites ? "completing" : "not completing")} writes."); 466if (NetEventSource.Log.IsEnabled()) 468NetEventSource.Info(this, $"{this} Aborting {abortDirection} with {errorCode}"); 512if (NetEventSource.Log.IsEnabled()) 514NetEventSource.Info(this, $"{this} Completing writes."); 666if (NetEventSource.Log.IsEnabled()) 668NetEventSource.Error(null, $"Received event {streamEvent->Type} for [strm][{(nint)stream:X11}] while stream is already disposed"); 676if (NetEventSource.Log.IsEnabled()) 678NetEventSource.Info(instance, $"{instance} Received event {streamEvent->Type} {streamEvent->ToString()}"); 684if (NetEventSource.Log.IsEnabled()) 686NetEventSource.Error(instance, $"{instance} Exception while processing event {streamEvent->Type}: {ex}"); 706if (NetEventSource.Log.IsEnabled()) 708NetEventSource.Info(this, $"{this} Disposing."); 746if (NetEventSource.Log.IsEnabled()) 748NetEventSource.Error(this, $"{this} StreamShutdown({flags}) failed: {ThrowHelper.GetErrorMessageForStatus(status)}.");