// 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;
namespace Microsoft.AspNetCore.Authentication.AzureAD.UI
{
///
/// Constants for different Azure Active Directory authentication components.
///
public static class AzureADDefaults
{
///
/// The scheme name for Open ID Connect when using
/// .
///
public static readonly string OpenIdScheme = "AzureADOpenID";
///
/// The scheme name for cookies when using
/// .
///
public static readonly string CookieScheme = "AzureADCookie";
///
/// The default scheme for Azure Active Directory Bearer.
///
public static readonly string BearerAuthenticationScheme = "AzureADBearer";
///
/// The scheme name for JWT Bearer when using
/// .
///
public static readonly string JwtBearerAuthenticationScheme = "AzureADJwtBearer";
///
/// The default scheme for Azure Active Directory.
///
public static readonly string AuthenticationScheme = "AzureAD";
///
/// The display name for Azure Active Directory.
///
public static readonly string DisplayName = "Azure Active Directory";
}
}