System\Net\Http\SocketsHttpHandler\HttpConnectionBase.cs (8)
86if (HttpTelemetry.Log.IsEnabled())
94if (this is HttpConnection) HttpTelemetry.Log.Http11ConnectionEstablished(Id, scheme, host, port, remoteEndPoint);
95else if (this is Http2Connection) HttpTelemetry.Log.Http20ConnectionEstablished(Id, scheme, host, port, remoteEndPoint);
96else HttpTelemetry.Log.Http30ConnectionEstablished(Id, scheme, host, port, remoteEndPoint);
104if (HttpTelemetry.Log.IsEnabled())
109if (this is HttpConnection) HttpTelemetry.Log.Http11ConnectionClosed(Id);
110else if (this is Http2Connection) HttpTelemetry.Log.Http20ConnectionClosed(Id);
111else HttpTelemetry.Log.Http30ConnectionClosed(Id);