1 write to ConnectionId
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\BaseHttpConnectionContext.cs (1)
25ConnectionId = connectionId;
21 references to ConnectionId
Microsoft.AspNetCore.Server.Kestrel.Core (21)
Internal\Http\Http1Connection.cs (1)
59_context.ConnectionId,
Internal\Http\HttpProtocol.cs (1)
105protected string ConnectionId => _context.ConnectionId;
Internal\Http2\Http2Connection.cs (6)
183context.ConnectionId, 188public string ConnectionId => _context.ConnectionId; 1211Log.Http2MaxConcurrentStreamsReached(_context.ConnectionId); 1231Log.Http2TooManyEnhanceYourCalms(_context.ConnectionId, EnhanceYourCalmMaximumCount); 1418Log.Http2ConnectionClosing(_context.ConnectionId); 1733Log.Http2ConnectionClosed(_context.ConnectionId, _highestOpenedStreamId);
Internal\Http3\Http3Connection.cs (8)
101public string ConnectionId => _context.ConnectionId; 315Log.ResponseMinimumDataRateNotSatisfied(_context.ConnectionId, stream.TraceIdentifier); 461Log.RequestProcessingError(_context.ConnectionId, ex); 469Log.RequestProcessingError(_context.ConnectionId, ex); 474Log.RequestProcessingError(_context.ConnectionId, ex); 479Log.Http3ConnectionError(_context.ConnectionId, ex); 556Log.Http3ConnectionClosed(_context.ConnectionId, streamId); 681Log.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)
134_frameWriter.Reset(context.Transport.Output, context.ConnectionId);
Internal\HttpConnection.cs (1)
271Log.ResponseMinimumDataRateNotSatisfied(_context.ConnectionId, _http1Connection?.TraceIdentifier);