Implemented interface member:
method
Trace
System.Net.Http.IHttpTrace.Trace(System.String, System.String)
3 overrides of Trace
System.Net.Http (3)
System\Net\Http\SocketsHttpHandler\Http2Connection.cs (1)
2268public override void Trace(string message, [CallerMemberName] string? memberName = null) =>
System\Net\Http\SocketsHttpHandler\Http3Connection.cs (1)
477public override void Trace(string message, [CallerMemberName] string? memberName = null) =>
System\Net\Http\SocketsHttpHandler\HttpConnection.cs (1)
2163public sealed override void Trace(string message, [CallerMemberName] string? memberName = null) =>
11 references to Trace
System.Net.Http (11)
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionWaiter.cs (2)
72if (NetEventSource.Log.IsEnabled()) connection.Trace("Dequeued waiting request."); 79connection.Trace(Task.IsCanceled
System\Net\Http\SocketsHttpHandler\HttpConnectionBase.cs (9)
216Trace( 227Trace($"{this}. Id:{Id}"); 277if (NetEventSource.Log.IsEnabled()) Trace("Marking connection for eviction per ShouldEvictConnection callback."); 283if (NetEventSource.Log.IsEnabled()) Trace($"{nameof(SocketsHttpHandler.ShouldEvictConnection)} threw an exception: {e}"); 332if (NetEventSource.Log.IsEnabled()) connection.Trace($"Exception from asynchronous processing: {e}"); 346if (NetEventSource.Log.IsEnabled()) Trace("Scavenging connection. Connection was evicted."); 356if (NetEventSource.Log.IsEnabled()) Trace($"Scavenging connection. Idle {TimeSpan.FromMilliseconds(idleTicks)} > {pooledConnectionIdleTimeout}."); 367if (NetEventSource.Log.IsEnabled()) Trace($"Scavenging connection. Lifetime {TimeSpan.FromMilliseconds(lifetimeTicks)} > {pooledConnectionLifetime}."); 374if (NetEventSource.Log.IsEnabled()) Trace($"Scavenging connection. Keep-Alive timeout exceeded, unexpected data or EOF received.");