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