You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
637 B
C#
26 lines
637 B
C#
namespace AuthStudy.WebApp
|
|
{
|
|
/// <summary>
|
|
/// 认证方案名称
|
|
/// </summary>
|
|
public class AuthenticationSchemeList
|
|
{
|
|
/// <summary>
|
|
/// 浏览器认证方案
|
|
/// 接口实现方式
|
|
/// </summary>
|
|
public const string BaseBrowserScheme = "BaseBrowserScheme";
|
|
|
|
/// <summary>
|
|
/// 浏览器认证方案
|
|
/// 基类实现方式
|
|
/// </summary>
|
|
public const string BrowserScheme = "BrowserScheme";
|
|
|
|
/// <summary>
|
|
/// 基本身份认证
|
|
/// </summary>
|
|
public const string BasicScheme = "BasicScheme";
|
|
}
|
|
}
|