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)
994connection.User = connection.HttpContext?.User;
7 references to User
Microsoft.AspNetCore.Http.Connections (7)
Internal\HttpConnectionContext.cs (3)
305if (_ownsUserIdentities && !ReferenceEquals(User, user)) 307previouslyOwnedUser = User; 393ownedUser = User;
Internal\HttpConnectionDispatcher.cs (4)
191if (HasWindowsIdentity(connection.User) || HasWindowsIdentity(newPrincipal)) 279PreviousUser = connection.User ?? new ClaimsPrincipal(new ClaimsIdentity()), 889var currentUser = connection.User; 996if (transportType == HttpTransportType.LongPolling && connection.User?.Identity is WindowsIdentity)