2 implementations of User
Microsoft.AspNetCore.Connections.Abstractions (1)
DefaultConnectionContext.cs (1)
78
public ClaimsPrincipal?
User
{ get; set; }
Microsoft.AspNetCore.Http.Connections (1)
Internal\HttpConnectionContext.cs (1)
174
public 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());
688
var user = Features.Get<IConnectionUserFeature>()?.
User
?? new ClaimsPrincipal();