21 references to RemoteAuthenticationResult
Microsoft.AspNetCore.Components.WebAssembly.Authentication (21)
RemoteAuthenticatorViewCore.cs (4)
211var result = await AuthenticationService.SignInAsync(new RemoteAuthenticationContext<TAuthenticationState> 246var result = await AuthenticationService.CompleteSignInAsync( 295var result = await AuthenticationService.SignOutAsync(new RemoteAuthenticationContext<TAuthenticationState> 335var result = await AuthenticationService.CompleteSignOutAsync(new RemoteAuthenticationContext<TAuthenticationState> { Url = Navigation.Uri });
Services\IRemoteAuthenticationService.cs (4)
21Task<RemoteAuthenticationResult<TRemoteAuthenticationState>> SignInAsync(RemoteAuthenticationContext<TRemoteAuthenticationState> context); 29Task<RemoteAuthenticationResult<TRemoteAuthenticationState>> CompleteSignInAsync( 37Task<RemoteAuthenticationResult<TRemoteAuthenticationState>> SignOutAsync( 46Task<RemoteAuthenticationResult<TRemoteAuthenticationState>> CompleteSignOutAsync(
Services\RemoteAuthenticationService.cs (13)
90public virtual async Task<RemoteAuthenticationResult<TRemoteAuthenticationState>> SignInAsync( 94var result = await JSInvokeWithContextAsync<RemoteAuthenticationContext<TRemoteAuthenticationState>, RemoteAuthenticationResult<TRemoteAuthenticationState>>("AuthenticationService.signIn", context); 101public virtual async Task<RemoteAuthenticationResult<TRemoteAuthenticationState>> CompleteSignInAsync( 105var result = await JsRuntime.InvokeAsync<RemoteAuthenticationResult<TRemoteAuthenticationState>>("AuthenticationService.completeSignIn", context.Url); 112public virtual async Task<RemoteAuthenticationResult<TRemoteAuthenticationState>> SignOutAsync( 116var result = await JSInvokeWithContextAsync<RemoteAuthenticationContext<TRemoteAuthenticationState>, RemoteAuthenticationResult<TRemoteAuthenticationState>>("AuthenticationService.signOut", context); 123public virtual async Task<RemoteAuthenticationResult<TRemoteAuthenticationState>> CompleteSignOutAsync( 127var result = await JsRuntime.InvokeAsync<RemoteAuthenticationResult<TRemoteAuthenticationState>>("AuthenticationService.completeSignOut", context.Url); 217private async Task UpdateUserOnSuccess(RemoteAuthenticationResult<TRemoteAuthenticationState> result)