| File: AuthenticationState.cs | Web Access |
| Project: src\aspnetcore\src\Components\Authorization\src\Microsoft.AspNetCore.Components.Authorization.csproj (Microsoft.AspNetCore.Components.Authorization) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Security.Claims; namespace Microsoft.AspNetCore.Components.Authorization; /// <summary> /// Provides information about the currently authenticated user, if any. /// </summary> public class AuthenticationState { /// <summary> /// Constructs an instance of <see cref="AuthenticationState"/>. /// </summary> /// <param name="user">A <see cref="ClaimsPrincipal"/> representing the user.</param> public AuthenticationState(ClaimsPrincipal user) { ArgumentNullException.ThrowIfNull(user); User = user; } /// <summary> /// Gets a <see cref="ClaimsPrincipal"/> that describes the current user. /// </summary> public ClaimsPrincipal User { get; } }