2 implementations of Trace
System.Net.Http (2)
System\Net\Http\SocketsHttpHandler\Http2Stream.cs (1)
1477public void Trace(string message, [CallerMemberName] string? memberName = null) =>
System\Net\Http\SocketsHttpHandler\HttpConnectionBase.cs (1)
145public abstract void Trace(string message, [CallerMemberName] string? memberName = null);
4 references to Trace
System.Net.Http (4)
System\Net\Http\SocketsHttpHandler\CreditManager.cs (4)
25if (NetEventSource.Log.IsEnabled()) owner.Trace($"{name}. {nameof(initialCredit)}={initialCredit}"); 60if (NetEventSource.Log.IsEnabled()) _owner.Trace($"{_name}. requested={amount}, no credit available."); 90if (NetEventSource.Log.IsEnabled()) _owner.Trace($"{_name}. {nameof(amount)}={amount}, current={_current}"); 170if (NetEventSource.Log.IsEnabled()) _owner.Trace($"{_name}. requested={amount}, current={_current}, granted={granted}");