System\Net\Http\SocketsHttpHandler\HttpConnectionBase.cs (8)
83if (HttpTelemetry.Log.IsEnabled())
91if (this is HttpConnection) HttpTelemetry.Log.Http11ConnectionEstablished(Id, scheme, host, port, remoteEndPoint);
92else if (this is Http2Connection) HttpTelemetry.Log.Http20ConnectionEstablished(Id, scheme, host, port, remoteEndPoint);
93else HttpTelemetry.Log.Http30ConnectionEstablished(Id, scheme, host, port, remoteEndPoint);
101if (HttpTelemetry.Log.IsEnabled())
106if (this is HttpConnection) HttpTelemetry.Log.Http11ConnectionClosed(Id);
107else if (this is Http2Connection) HttpTelemetry.Log.Http20ConnectionClosed(Id);
108else HttpTelemetry.Log.Http30ConnectionClosed(Id);