namespace OAuth.AspNet.AuthServer { /// /// Default values used by authorization server and bearer authentication. /// public static class OAuthDefaults { /// /// Default value for AuthenticationType property in the OAuthBearerAuthenticationOptions and /// OAuthAuthorizationServerOptions. /// public const string AuthenticationType = "Bearer"; } }