You've already forked linux-packaging-mono
Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
This commit is contained in:
parent
a569aebcfd
commit
e79aa3c0ed
@@ -0,0 +1,31 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace System.IdentityModel.Tokens
|
||||
{
|
||||
/// <summary>
|
||||
/// Defines constants for SAML authentication methods.
|
||||
/// </summary>
|
||||
public static class AuthenticationMethods
|
||||
{
|
||||
#pragma warning disable 1591
|
||||
public const string Namespace = "http://schemas.microsoft.com/ws/2008/06/identity/authenticationmethod/";
|
||||
|
||||
public const string HardwareToken = Namespace + "hardwaretoken";
|
||||
public const string Kerberos = Namespace + "kerberos";
|
||||
public const string Password = Namespace + "password";
|
||||
public const string Pgp = Namespace + "pgp";
|
||||
public const string SecureRemotePassword = Namespace + "secureremotepassword";
|
||||
public const string Signature = Namespace + "signature";
|
||||
public const string Smartcard = Namespace + "smartcard";
|
||||
public const string SmartcardPki = Namespace + "smartcardpki";
|
||||
public const string Spki = Namespace + "spki";
|
||||
public const string TlsClient = Namespace + "tlsclient";
|
||||
public const string Unspecified = Namespace + "unspecified";
|
||||
public const string Windows = Namespace + "windows";
|
||||
public const string Xkms = Namespace + "xkms";
|
||||
public const string X509 = Namespace + "x509";
|
||||
#pragma warning restore 1591
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user