2 implementations of IConnectionUserFeature
Microsoft.AspNetCore.Connections.Abstractions (1)
DefaultConnectionContext.cs (1)
23IConnectionUserFeature,
Microsoft.AspNetCore.Http.Connections (1)
Internal\HttpConnectionContext.cs (1)
26IConnectionUserFeature,
6 references to IConnectionUserFeature
Microsoft.AspNetCore.Connections.Abstractions (1)
DefaultConnectionContext.cs (1)
48Features.Set<IConnectionUserFeature>(this);
Microsoft.AspNetCore.Http.Connections (1)
Internal\HttpConnectionContext.cs (1)
102Features.Set<IConnectionUserFeature>(this);
Microsoft.AspNetCore.SignalR.Core (4)
HubConnectionContext.cs (2)
190_connectionContext.Features.Get<IConnectionUserFeature>()?.User ?? new ClaimsPrincipal()); 692var user = Features.Get<IConnectionUserFeature>()?.User ?? new ClaimsPrincipal();
HubConnectionHandler.cs (2)
328var connectionUserFeature = connection.Features.Get<IConnectionUserFeature>();