1 write to ConnectionId
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\BaseHttpConnectionContext.cs (1)
26ConnectionId = connectionId;
21 references to ConnectionId
Microsoft.AspNetCore.Server.Kestrel.Core (21)
Internal\Http\Http1Connection.cs (1)
59_context.ConnectionId,
Internal\Http\HttpProtocol.cs (1)
112protected string ConnectionId => _context.ConnectionId;
Internal\Http2\Http2Connection.cs (6)
202context.ConnectionId, 207public string ConnectionId => _context.ConnectionId; 1296Log.Http2MaxConcurrentStreamsReached(_context.ConnectionId); 1316Log.Http2TooManyEnhanceYourCalms(_context.ConnectionId, EnhanceYourCalmMaximumCount); 1503Log.Http2ConnectionClosing(_context.ConnectionId); 1825Log.Http2ConnectionClosed(_context.ConnectionId, _highestOpenedStreamId);
Internal\Http3\Http3Connection.cs (8)
101public string ConnectionId => _context.ConnectionId; 321Log.ResponseMinimumDataRateNotSatisfied(_context.ConnectionId, stream.TraceIdentifier); 468Log.RequestProcessingError(_context.ConnectionId, ex); 477Log.RequestProcessingError(_context.ConnectionId, ex); 483Log.RequestProcessingError(_context.ConnectionId, ex); 489Log.Http3ConnectionError(_context.ConnectionId, ex); 576Log.Http3ConnectionClosed(_context.ConnectionId, streamId); 701Log.Http3ConnectionClosing(_context.ConnectionId);
Internal\Http3\Http3ControlStream.cs (3)
61_frameWriter.Reset(context.Transport.Output, context.ConnectionId); 144Log.Http3GoAwayStreamId(_context.ConnectionId, id); 264Log.Http3FrameReceived(_context.ConnectionId, _streamIdFeature.StreamId, _incomingFrame);
Internal\Http3\Http3Stream.cs (1)
135_frameWriter.Reset(context.Transport.Output, context.ConnectionId);
Internal\HttpConnection.cs (1)
290Log.ResponseMinimumDataRateNotSatisfied(_context.ConnectionId, _http1Connection?.TraceIdentifier);