4 instantiations of RemoteAuthenticationContext
Microsoft.AspNetCore.Components.WebAssembly.Authentication (4)
RemoteAuthenticatorViewCore.cs (4)
211var result = await AuthenticationService.SignInAsync(new RemoteAuthenticationContext<TAuthenticationState> 247new RemoteAuthenticationContext<TAuthenticationState> { Url = Navigation.Uri }); 295var result = await AuthenticationService.SignOutAsync(new RemoteAuthenticationContext<TAuthenticationState> 335var result = await AuthenticationService.CompleteSignOutAsync(new RemoteAuthenticationContext<TAuthenticationState> { Url = Navigation.Uri });
14 references to RemoteAuthenticationContext
Microsoft.AspNetCore.Components.WebAssembly.Authentication (14)
Services\IRemoteAuthenticationService.cs (8)
19/// <param name="context">The <see cref="RemoteAuthenticationContext{TRemoteAuthenticationState}"/> for authenticating the user.</param> 21Task<RemoteAuthenticationResult<TRemoteAuthenticationState>> SignInAsync(RemoteAuthenticationContext<TRemoteAuthenticationState> context); 27/// <param name="context">The <see cref="RemoteAuthenticationContext{TRemoteAuthenticationState}"/> for authenticating the user.</param> 30RemoteAuthenticationContext<TRemoteAuthenticationState> context); 35/// <param name="context">The <see cref="RemoteAuthenticationContext{TRemoteAuthenticationState}"/> for authenticating the user.</param> 38RemoteAuthenticationContext<TRemoteAuthenticationState> context); 44/// <param name="context">The <see cref="RemoteAuthenticationContext{TRemoteAuthenticationState}"/> for authenticating the user.</param> 47RemoteAuthenticationContext<TRemoteAuthenticationState> context);
Services\RemoteAuthenticationService.cs (6)
91RemoteAuthenticationContext<TRemoteAuthenticationState> context) 94var result = await JSInvokeWithContextAsync<RemoteAuthenticationContext<TRemoteAuthenticationState>, RemoteAuthenticationResult<TRemoteAuthenticationState>>("AuthenticationService.signIn", context); 102RemoteAuthenticationContext<TRemoteAuthenticationState> context) 113RemoteAuthenticationContext<TRemoteAuthenticationState> context) 116var result = await JSInvokeWithContextAsync<RemoteAuthenticationContext<TRemoteAuthenticationState>, RemoteAuthenticationResult<TRemoteAuthenticationState>>("AuthenticationService.signOut", context); 124RemoteAuthenticationContext<TRemoteAuthenticationState> context)