1 write to Id
System.Net.Http (1)
System\Net\Http\SocketsHttpHandler\HttpConnectionBase.cs (1)
76Id = connectionId;
15 references to Id
System.Net.Http (15)
System\Net\Http\SocketsHttpHandler\Http2Connection.cs (2)
1692if (HttpTelemetry.Log.IsEnabled()) HttpTelemetry.Log.RequestHeadersStart(Id); 2076request.ConnectionId = Id;
System\Net\Http\SocketsHttpHandler\Http3Connection.cs (1)
268request.ConnectionId = Id;
System\Net\Http\SocketsHttpHandler\Http3RequestStream.cs (1)
662if (HttpTelemetry.Log.IsEnabled()) HttpTelemetry.Log.RequestHeadersStart(_connection.Id);
System\Net\Http\SocketsHttpHandler\HttpConnection.cs (2)
535request.ConnectionId = Id; 557if (HttpTelemetry.Log.IsEnabled()) HttpTelemetry.Log.RequestHeadersStart(Id);
System\Net\Http\SocketsHttpHandler\HttpConnectionBase.cs (9)
110Id, 151if (this is HttpConnection) HttpTelemetry.Log.Http11ConnectionEstablished(Id, scheme, host, port, remoteEndPoint); 152else if (this is Http2Connection) HttpTelemetry.Log.Http20ConnectionEstablished(Id, scheme, host, port, remoteEndPoint); 153else HttpTelemetry.Log.Http30ConnectionEstablished(Id, scheme, host, port, remoteEndPoint); 170if (this is HttpConnection) HttpTelemetry.Log.Http11ConnectionClosed(Id); 171else if (this is Http2Connection) HttpTelemetry.Log.Http20ConnectionClosed(Id); 172else HttpTelemetry.Log.Http30ConnectionClosed(Id); 217$"{this}. Id:{Id}, " + 227Trace($"{this}. Id:{Id}");