Try your search with a different keyword or use * as a wildcard.
using Microsoft.AspNetCore.Http;
namespace Nop.Services.Authentication;
/// <summary>
/// Represents default values related to authentication services
/// </summary>
public static partial class NopAuthenticationDefaults
{
/// <summary>
/// The default value used for authentication scheme
/// </summary>
public static string AuthenticationScheme => "Authentication";
/// <summary>
/// The default value used for external authentication scheme
/// </summary>
public static string ExternalAuthenticationScheme => "ExternalAuthentication";
/// <summary>
/// The issuer that should be used for any claims that are created
/// </summary>
public static string ClaimsIssuer => "nopCommerce";
/// <summary>
/// The default value for the login path
/// </summary>
public static PathString LoginPath => new("/login");
/// <summary>
/// The default value for the access denied path
/// </summary>
public static PathString AccessDeniedPath => new("/page-not-found");
/// <summary>
/// The name of the query string parameter which is appended by the handler during a Challenge
/// </summary>
public static string ReturnUrlParameter => "returnUrl";
/// <summary>
/// Gets a key to store external authentication errors to session
/// </summary>
public static string ExternalAuthenticationErrorsSessionKey => "nop.externalauth.errors";
}