| File: AuthenticationConfigurationProviderExtensions.cs | Web Access |
| Project: src\aspnetcore\src\Security\Authentication\Core\src\Microsoft.AspNetCore.Authentication.csproj (Microsoft.AspNetCore.Authentication) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using Microsoft.Extensions.Configuration; namespace Microsoft.AspNetCore.Authentication; /// <summary> /// Extension methods for <see cref="IAuthenticationConfigurationProvider"/> /// </summary> public static class AuthenticationConfigurationProviderExtensions { private const string AuthenticationSchemesKey = "Schemes"; /// <summary> /// Returns the specified <see cref="IConfiguration"/> object. /// </summary> /// <param name="provider">An <see cref="IAuthenticationConfigurationProvider"/> instance.</param> /// <param name="authenticationScheme">The path to the section to be returned.</param> /// <returns>The specified <see cref="IConfiguration"/> object, or null if the requested section does not exist.</returns> public static IConfiguration GetSchemeConfiguration(this IAuthenticationConfigurationProvider provider, string authenticationScheme) { ArgumentNullException.ThrowIfNull(provider, nameof(provider)); if (provider.AuthenticationConfiguration is null) { throw new InvalidOperationException("There was no top-level authentication property found in configuration."); } return provider.AuthenticationConfiguration.GetSection($"{AuthenticationSchemesKey}:{authenticationScheme}"); } }