// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Authentication; namespace Microsoft.AspNetCore.Authentication.AzureADB2C.UI { /// /// Constants for different Azure Active Directory B2C authentication components. /// public static class AzureADB2CDefaults { /// /// The key for the policy used in . /// public static readonly string PolicyKey = "Policy"; /// /// The scheme name for Open ID Connect when using /// . /// public static readonly string OpenIdScheme = "AzureADB2COpenID"; /// /// The scheme name for cookies when using /// . /// public static readonly string CookieScheme = "AzureADB2CCookie"; /// /// The default scheme for Azure Active Directory B2C Bearer. /// public static readonly string BearerAuthenticationScheme = "AzureADB2CBearer"; /// /// The scheme name for JWT Bearer when using /// . /// public static readonly string JwtBearerAuthenticationScheme = "AzureADB2CJwtBearer"; /// /// The default scheme for Azure Active Directory B2C. /// public static readonly string AuthenticationScheme = "AzureADB2C"; /// /// The display name for Azure Active Directory B2C. /// public static readonly string DisplayName = "Azure Active Directory B2C"; } }