2 implementations of User
Microsoft.AspNetCore.Connections.Abstractions (1)
DefaultConnectionContext.cs (1)
78public ClaimsPrincipal? User { get; set; }
Microsoft.AspNetCore.Http.Connections (1)
Internal\HttpConnectionContext.cs (1)
174public ClaimsPrincipal? User { get; set; }
3 references to User
Microsoft.AspNetCore.Connections.Abstractions (1)
Features\IConnectionUserRefreshFeature.cs (1)
16/// Registers a callback to be invoked after the <see cref="IConnectionUserFeature.User"/> has been refreshed.
Microsoft.AspNetCore.SignalR.Core (2)
HubConnectionContext.cs (2)
191_connectionContext.Features.Get<IConnectionUserFeature>()?.User ?? new ClaimsPrincipal()); 688var user = Features.Get<IConnectionUserFeature>()?.User ?? new ClaimsPrincipal();