// 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.Authentication.BearerToken;
/// <summary>
/// Default values used by bearer token authentication.
/// </summary>
public static class BearerTokenDefaults
{
/// <summary>
/// Default value for AuthenticationScheme property in the <see cref="BearerTokenOptions"/>.
/// </summary>
public const string AuthenticationScheme = "BearerToken";
}
|