IRemoteAuthenticationService<TRemoteAuthenticationState> 인터페이스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
Blazor WebAssembly 애플리케이션에 대한 인증 작업을 수행하는 서비스에 대한 계약을 나타냅니다.
generic <typename TRemoteAuthenticationState>
where TRemoteAuthenticationState : RemoteAuthenticationStatepublic interface class IRemoteAuthenticationService
public interface IRemoteAuthenticationService<TRemoteAuthenticationState> where TRemoteAuthenticationState : RemoteAuthenticationState
type IRemoteAuthenticationService<'RemoteAuthenticationState (requires 'RemoteAuthenticationState :> RemoteAuthenticationState)> = interface
Public Interface IRemoteAuthenticationService(Of TRemoteAuthenticationState)
형식 매개 변수
- TRemoteAuthenticationState
인증 작업에서 유지할 상태입니다.
- 파생
메서드
CompleteSignInAsync(RemoteAuthenticationContext<TRemoteAuthenticationState>) |
리디렉션 작업과 애플리케이션의 페이지로 리디렉션 콜백을 통해 애플리케이션 원본 외부에서 수행될 때 사용자의 로그인 작업을 완료합니다. |
CompleteSignOutAsync(RemoteAuthenticationContext<TRemoteAuthenticationState>) |
리디렉션 작업과 애플리케이션의 페이지로 리디렉션 콜백을 통해 애플리케이션 원본 외부에서 수행되는 사용자에 대한 로그아웃 작업을 완료합니다. |
SignInAsync(RemoteAuthenticationContext<TRemoteAuthenticationState>) |
사용자를 로그인합니다. |
SignOutAsync(RemoteAuthenticationContext<TRemoteAuthenticationState>) |
사용자를 로그아웃합니다. |