Implemented interface member:
property
User
Microsoft.AspNetCore.Connections.Features.IConnectionUserFeature.User
2 writes to User
Microsoft.AspNetCore.Http.Connections (2)
Internal\HttpConnectionContext.cs (1)
311
User
= user;
Internal\HttpConnectionDispatcher.cs (1)
994
connection.
User
= connection.HttpContext?.User;
7 references to User
Microsoft.AspNetCore.Http.Connections (7)
Internal\HttpConnectionContext.cs (3)
305
if (_ownsUserIdentities && !ReferenceEquals(
User
, user))
307
previouslyOwnedUser =
User
;
393
ownedUser =
User
;
Internal\HttpConnectionDispatcher.cs (4)
191
if (HasWindowsIdentity(connection.
User
) || HasWindowsIdentity(newPrincipal))
279
PreviousUser = connection.
User
?? new ClaimsPrincipal(new ClaimsIdentity()),
889
var currentUser = connection.
User
;
996
if (transportType == HttpTransportType.LongPolling && connection.
User
?.Identity is WindowsIdentity)