/* * Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0) * See https://github.com/aspnet-contrib/AspNet.Security.OAuth.Providers * for more information concerning the license and the contributors participating to this project. */ namespace AspNet.Security.OAuth.<%= name %>; /// /// Default values used by the <%= name %> authentication provider. /// public static class <%= name %>AuthenticationDefaults { /// /// Default value for . /// public const string AuthenticationScheme = "<%= name %>"; /// /// Default value for . /// public static readonly string DisplayName = "<%= name %>"; /// /// Default value for . /// public static readonly string Issuer = "<%= name %>"; /// /// Default value for . /// public static readonly string CallbackPath = "/signin-<%= name.toLowerCase() %>"; /// /// Default value for . /// public static readonly string AuthorizationEndpoint = "<%= authorizationendpoint %>"; /// /// Default value for . /// public static readonly string TokenEndpoint = "<%= tokenendpoint %>"; /// /// Default value for . /// public static readonly string UserInformationEndpoint = "<%= userinformationendpoint %>"; }