2 implementations of IConnectionUserFeature
Microsoft.AspNetCore.Connections.Abstractions (1)
DefaultConnectionContext.cs (1)
23IConnectionUserFeature,
Microsoft.AspNetCore.Http.Connections (1)
Internal\HttpConnectionContext.cs (1)
25IConnectionUserFeature,
5 references to IConnectionUserFeature
Microsoft.AspNetCore.Connections.Abstractions (2)
DefaultConnectionContext.cs (1)
48Features.Set<IConnectionUserFeature>(this);
Features\IConnectionUserRefreshFeature.cs (1)
16/// Registers a callback to be invoked after the <see cref="IConnectionUserFeature.User"/> has been refreshed.
Microsoft.AspNetCore.Http.Connections (1)
Internal\HttpConnectionContext.cs (1)
96Features.Set<IConnectionUserFeature>(this);
Microsoft.AspNetCore.SignalR.Core (2)
HubConnectionContext.cs (2)
191_connectionContext.Features.Get<IConnectionUserFeature>()?.User ?? new ClaimsPrincipal()); 688var user = Features.Get<IConnectionUserFeature>()?.User ?? new ClaimsPrincipal();