Implemented interface member:
property
User
Microsoft.AspNetCore.Connections.Features.IConnectionUserFeature.User
2 writes to User
Microsoft.AspNetCore.Http.Connections (2)
Internal\HttpConnectionContext.cs (1)
311User = user;
Internal\HttpConnectionDispatcher.cs (1)
1013connection.User = connection.HttpContext?.User;
9 references to User
Microsoft.AspNetCore.Http.Connections (9)
Internal\HttpConnectionContext.cs (3)
305if (_ownsUserIdentities && !ReferenceEquals(User, user)) 307previouslyOwnedUser = User; 393ownedUser = User;
Internal\HttpConnectionDispatcher.cs (6)
197if (HasWindowsIdentity(connection.User) || HasWindowsIdentity(newPrincipal)) 285PreviousUser = connection.User ?? new ClaimsPrincipal(new ClaimsIdentity()), 916var currentUser = connection.User; 1015if (transportType == HttpTransportType.LongPolling && connection.User?.Identity is WindowsIdentity) 1176if (connection.User is null) 1181var originalIdentity = GetUserIdentityKey(connection.User);