13 references to ProviderOptions
Microsoft.AspNetCore.Components.WebAssembly.Authentication (7)
Options\DefaultApiAuthorizationOptionsConfiguration.cs (1)
16
options.
ProviderOptions
.ConfigurationEndpoint ??= $"_configuration/{_applicationName}";
Options\DefaultOidcProviderOptionsConfiguration.cs (5)
16
options.UserOptions.AuthenticationType ??= options.
ProviderOptions
.ClientId;
18
var redirectUri = options.
ProviderOptions
.RedirectUri;
22
options.
ProviderOptions
.RedirectUri = _navigationManager
26
var logoutUri = options.
ProviderOptions
.PostLogoutRedirectUri;
30
options.
ProviderOptions
.PostLogoutRedirectUri = _navigationManager
Services\RemoteAuthenticationService.cs (1)
213
await JsRuntime.InvokeVoidAsync("AuthenticationService.init", Options.
ProviderOptions
, _loggingOptions);
Microsoft.Authentication.WebAssembly.Msal (6)
MsalDefaultOptionsConfiguration.cs (6)
23
options.UserOptions.AuthenticationType ??= options.
ProviderOptions
.Authentication.ClientId;
25
var redirectUri = options.
ProviderOptions
.Authentication.RedirectUri;
29
options.
ProviderOptions
.Authentication.RedirectUri = _navigationManager
33
var logoutUri = options.
ProviderOptions
.Authentication.PostLogoutRedirectUri;
37
options.
ProviderOptions
.Authentication.PostLogoutRedirectUri = _navigationManager
41
options.
ProviderOptions
.Authentication.NavigateToLoginRequestUrl = false;