5 implementations of ConnectionId
Microsoft.AspNetCore.Http (1)
Features\HttpConnectionFeature.cs (1)
14public string ConnectionId { get; set; } = default!;
Microsoft.AspNetCore.Owin (1)
OwinFeatureCollection.cs (1)
223string IHttpConnectionFeature.ConnectionId
Microsoft.AspNetCore.Server.HttpSys (1)
RequestProcessing\RequestContext.FeatureCollection.cs (1)
312string IHttpConnectionFeature.ConnectionId
Microsoft.AspNetCore.Server.IIS (1)
Core\IISHttpContext.IHttpConnectionFeature.cs (1)
68string IHttpConnectionFeature.ConnectionId
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http\HttpProtocol.FeatureCollection.cs (1)
180string IHttpConnectionFeature.ConnectionId
2 writes to ConnectionId
Microsoft.AspNetCore.Http (1)
Internal\DefaultConnectionInfo.cs (1)
53set { HttpConnectionFeature.ConnectionId = value; }
Microsoft.AspNetCore.Owin (1)
OwinEnvironment.cs (1)
432{ OwinConstants.CommonKeys.ConnectionId, new FeatureMap<IHttpConnectionFeature>(feature => feature.ConnectionId, (feature, value) => feature.ConnectionId = Convert.ToString(value, CultureInfo.InvariantCulture)) },
9 references to ConnectionId
Microsoft.AspNetCore.Http (1)
Internal\DefaultConnectionInfo.cs (1)
52get { return HttpConnectionFeature.ConnectionId; }
Microsoft.AspNetCore.Http.Connections (1)
Internal\HttpConnectionDispatcher.cs (1)
743connectionFeature.ConnectionId = existingConnectionFeature.ConnectionId;
Microsoft.AspNetCore.Owin (1)
OwinEnvironment.cs (1)
432{ OwinConstants.CommonKeys.ConnectionId, new FeatureMap<IHttpConnectionFeature>(feature => feature.ConnectionId, (feature, value) => feature.ConnectionId = Convert.ToString(value, CultureInfo.InvariantCulture)) },
Microsoft.AspNetCore.Server.IIS (6)
Core\IISHttpContext.cs (4)
797Log.ApplicationError(_logger, ((IHttpConnectionFeature)this).ConnectionId, ((IHttpRequestIdentifierFeature)this).TraceIdentifier, ex); 805Log.ConnectionBadRequest(_logger, ((IHttpConnectionFeature)this).ConnectionId, ex); 835Log.ApplicationError(_logger, ((IHttpConnectionFeature)this).ConnectionId, ((IHttpRequestIdentifierFeature)this).TraceIdentifier, ex); 840Log.RequestAborted(_logger, ((IHttpConnectionFeature)this).ConnectionId, ((IHttpRequestIdentifierFeature)this).TraceIdentifier);
Core\IISHttpContext.IO.cs (2)
248Log.ConnectionDisconnect(_logger, ((IHttpConnectionFeature)this).ConnectionId); 283Log.ApplicationError(_logger, ((IHttpConnectionFeature)this).ConnectionId, TraceIdentifier!, ex); // TODO: Can TraceIdentifier be null?