2 implementations of ConnectionId
Microsoft.AspNetCore.Http (1)
Features\HttpConnectionFeature.cs (1)
14public string ConnectionId { get; set; } = default!;
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http\HttpProtocol.FeatureCollection.cs (1)
180string IHttpConnectionFeature.ConnectionId
1 write to ConnectionId
Microsoft.AspNetCore.Http (1)
Internal\DefaultConnectionInfo.cs (1)
53set { HttpConnectionFeature.ConnectionId = value; }
2 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;