Dreamine.Identity 1.0.0.0
Dreamine.Identity 프로젝트의 API와 구성 요소를 제공합니다.
로딩중...
검색중...
일치하는것 없음
AnonymousAuthenticationStateProvider.cs
이 파일의 문서화 페이지로 가기
1using System.Security.Claims;
2using Microsoft.AspNetCore.Components.Authorization;
3
5
22public sealed class AnonymousAuthenticationStateProvider : AuthenticationStateProvider
23{
32 private static readonly Task<AuthenticationState> AnonymousState =
33 Task.FromResult(new AuthenticationState(new ClaimsPrincipal(new ClaimsIdentity())));
34
51 public override Task<AuthenticationState> GetAuthenticationStateAsync() => AnonymousState;
52}