// 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. namespace Microsoft.AspNet.Authentication.JwtBearer { /// /// Default values used by authorization server and bearer authentication. /// public static class JwtBearerAuthenticationDefaults { /// /// Default value for AuthenticationScheme property in the JwtBearerAuthenticationOptions and /// JwtAuthorizationServerOptions. /// public const string AuthenticationScheme = "Bearer"; } }