| File: Options\ApiAuthorizationProviderOptions.cs | Web Access |
| Project: src\aspnetcore\src\Components\WebAssembly\WebAssembly.Authentication\src\Microsoft.AspNetCore.Components.WebAssembly.Authentication.csproj (Microsoft.AspNetCore.Components.WebAssembly.Authentication) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.AspNetCore.Components.WebAssembly.Authentication; /// <summary> /// Represents options for applications relying on a server for configuration. /// </summary> public class ApiAuthorizationProviderOptions { /// <summary> /// Gets or sets the endpoint to call to retrieve the authentication settings for the application. /// </summary> public string? ConfigurationEndpoint { get; set; } }