3 implementations of User
Microsoft.AspNetCore.Authentication (1)
AuthenticationFeatures.cs (1)
32public ClaimsPrincipal? User
Microsoft.AspNetCore.Authorization.Policy (1)
AuthenticationFeatures.cs (1)
33public ClaimsPrincipal? User
Microsoft.AspNetCore.Http (1)
Features\Authentication\HttpAuthenticationFeature.cs (1)
14public ClaimsPrincipal? User { get; set; }
2 writes to User
Microsoft.AspNetCore.Http (2)
DefaultHttpContext.cs (2)
162HttpAuthenticationFeature.User = user; 166set { HttpAuthenticationFeature.User = value; }
2 references to User
Microsoft.AspNetCore.Authentication.Abstractions (1)
IAuthenticateResultFeature.cs (1)
15/// Set to null if the <see cref="IHttpAuthenticationFeature.User"/> property is set after the authorization middleware.
Microsoft.AspNetCore.Http (1)
DefaultHttpContext.cs (1)
158var user = HttpAuthenticationFeature.User;