7 references to UserOptions
Microsoft.AspNetCore.Components.WebAssembly.Authentication (5)
Options\DefaultApiAuthorizationOptionsConfiguration.cs (3)
19options.UserOptions.ScopeClaim ??= "scope"; 20options.UserOptions.RoleClaim ??= "role"; 21options.UserOptions.AuthenticationType ??= _applicationName;
Options\DefaultOidcProviderOptionsConfiguration.cs (1)
16options.UserOptions.AuthenticationType ??= options.ProviderOptions.ClientId;
Services\RemoteAuthenticationService.cs (1)
203var user = await AccountClaimsPrincipalFactory.CreateUserAsync(account, Options.UserOptions);
Microsoft.Authentication.WebAssembly.Msal (2)
MsalDefaultOptionsConfiguration.cs (2)
22options.UserOptions.ScopeClaim ??= "scp"; 23options.UserOptions.AuthenticationType ??= options.ProviderOptions.Authentication.ClientId;