8 overrides of ConnectionId
Microsoft.AspNetCore.Connections.Abstractions (1)
DefaultConnectionContext.cs (1)
72public override string ConnectionId { get; set; }
Microsoft.AspNetCore.Http.Connections (1)
Internal\HttpConnectionContext.cs (1)
158public override string ConnectionId { get; set; }
Microsoft.AspNetCore.Server.Kestrel.Core (4)
HttpsConfigurationService.cs (1)
200public override string ConnectionId
Internal\WebTransport\WebTransportStream.cs (1)
28public override string ConnectionId { get => _streamId.ToString(NumberFormatInfo.InvariantInfo); set => throw new NotSupportedException(); }
Middleware\LoggingMultiplexedConnectionMiddleware.cs (2)
43public override string ConnectionId { get => _inner.ConnectionId; set => _inner.ConnectionId = value; } 113public override string ConnectionId { get => _inner.ConnectionId; set => _inner.ConnectionId = value; }
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (2)
src\aspnetcore\src\Servers\Kestrel\shared\TransportConnection.cs (1)
30public override string ConnectionId
src\aspnetcore\src\Servers\Kestrel\shared\TransportMultiplexedConnection.cs (1)
24public override string ConnectionId
3 writes to ConnectionId
Microsoft.AspNetCore.Server.Kestrel.Core (3)
HttpsConfigurationService.cs (1)
203set => _inner.ConnectionId = value;
Middleware\LoggingMultiplexedConnectionMiddleware.cs (2)
43public override string ConnectionId { get => _inner.ConnectionId; set => _inner.ConnectionId = value; } 113public override string ConnectionId { get => _inner.ConnectionId; set => _inner.ConnectionId = value; }
30 references to ConnectionId
Microsoft.AspNetCore.Http.Connections (1)
HttpConnectionDispatcherOptions.cs (1)
128/// Set to allow connections to reconnect with the same <see cref="BaseConnectionContext.ConnectionId"/>.
Microsoft.AspNetCore.Http.Connections.Common (1)
NegotiationResponse.cs (1)
51/// If set, the connection should attempt to reconnect with the same <see cref="BaseConnectionContext.ConnectionId"/> if it disconnects.
Microsoft.AspNetCore.Server.Kestrel.Core (23)
HttpsConfigurationService.cs (1)
202get => _inner.ConnectionId;
Internal\ConnectionDispatcher.cs (1)
64Log.ConnectionAccepted(connection.ConnectionId);
Internal\Http2\Http2FrameWriter.cs (1)
142_log.Http2FlowControlQueueMaximumTooLow(_connectionContext.ConnectionId, maxStreamsPerConnection, _maximumFlowControlQueueSize);
Internal\Http3\Http3Connection.cs (1)
677_multiplexedContext.ConnectionId,
Internal\Http3\Http3ControlStream.cs (1)
89public string TraceIdentifier => _context.StreamContext.ConnectionId;
Internal\Http3\Http3Stream.cs (1)
995return _context.StreamContext.ConnectionId;
Internal\Infrastructure\ConnectionReference.cs (1)
19ConnectionId = connection.TransportConnection.ConnectionId;
Internal\Infrastructure\KestrelConnection.cs (1)
176return Logger.BeginScope(new ConnectionLogScope(connectionContext.ConnectionId));
Internal\Infrastructure\KestrelConnectionOfT.cs (3)
61Logger.ConnectionStart(connectionContext.ConnectionId); 74Logger.LogError(0, ex, "Unhandled exception while processing {ConnectionId}.", connectionContext.ConnectionId); 88Logger.ConnectionStop(connectionContext.ConnectionId);
Internal\Infrastructure\KestrelEventSource.cs (4)
65connection.ConnectionId, 85ConnectionStop(connection.ConnectionId); 176TlsHandshakeStart(connectionContext.ConnectionId, sslOptions.EnabledSslProtocols.ToString()); 198TlsHandshakeStop(connectionContext.ConnectionId, sslProtocols, applicationProtocol, hostName);
Middleware\ConnectionLimitMiddleware.cs (2)
36KestrelEventSource.Log.ConnectionRejected(connection.ConnectionId); 37_trace.ConnectionRejected(connection.ConnectionId);
Middleware\HttpConnectionMiddleware.cs (1)
37connectionContext.ConnectionId,
Middleware\HttpMultiplexedConnectionMiddleware.cs (1)
36connectionContext.ConnectionId,
Middleware\HttpsConnectionMiddleware.cs (2)
224_logger.HttpsConnectionEstablished(context.ConnectionId, sslStream.SslProtocol); 271KestrelEventSource.Log.TlsHandshakeFailed(metricsContext.ConnectionContext.ConnectionId);
Middleware\LoggingMultiplexedConnectionMiddleware.cs (2)
43public override string ConnectionId { get => _inner.ConnectionId; set => _inner.ConnectionId = value; } 113public override string ConnectionId { get => _inner.ConnectionId; set => _inner.ConnectionId = value; }
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (4)
Internal\QuicLog.cs (4)
20AcceptedConnectionCore(logger, connection.ConnectionId); 53ConnectionErrorCore(logger, connection.ConnectionId, ex); 64ConnectionAbortedCore(logger, connection.ConnectionId, errorCode, ex); 75ConnectionAbortCore(logger, connection.ConnectionId, errorCode, reason);
Microsoft.AspNetCore.SignalR.Core (1)
HubConnectionContext.cs (1)
128public virtual string ConnectionId => _connectionContext.ConnectionId;