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)
1013
connection.
User
= connection.HttpContext?.User;
9 references to User
Microsoft.AspNetCore.Http.Connections (9)
Internal\HttpConnectionContext.cs (3)
305
if (_ownsUserIdentities && !ReferenceEquals(
User
, user))
307
previouslyOwnedUser =
User
;
393
ownedUser =
User
;
Internal\HttpConnectionDispatcher.cs (6)
197
if (HasWindowsIdentity(connection.
User
) || HasWindowsIdentity(newPrincipal))
285
PreviousUser = connection.
User
?? new ClaimsPrincipal(new ClaimsIdentity()),
916
var currentUser = connection.
User
;
1015
if (transportType == HttpTransportType.LongPolling && connection.
User
?.Identity is WindowsIdentity)
1176
if (connection.
User
is null)
1181
var originalIdentity = GetUserIdentityKey(connection.
User
);