31 references to AuthenticationMethods
System.IdentityModel (29)
System\IdentityModel\Claims\AuthenticationTypeMaps.cs (24)
30new Mapping( AuthenticationMethods.HardwareToken, SamlConstants.AuthenticationMethods.HardwareTokenString ), 31new Mapping( AuthenticationMethods.Kerberos, SamlConstants.AuthenticationMethods.KerberosString ), 32new Mapping( AuthenticationMethods.Password, SamlConstants.AuthenticationMethods.PasswordString ), 33new Mapping( AuthenticationMethods.Pgp, SamlConstants.AuthenticationMethods.PgpString ), 34new Mapping( AuthenticationMethods.SecureRemotePassword, SamlConstants.AuthenticationMethods.SecureRemotePasswordString ), 35new Mapping( AuthenticationMethods.Signature, SamlConstants.AuthenticationMethods.SignatureString ), 36new Mapping( AuthenticationMethods.Spki, SamlConstants.AuthenticationMethods.SpkiString ), 37new Mapping( AuthenticationMethods.TlsClient, SamlConstants.AuthenticationMethods.TlsClientString ), 38new Mapping( AuthenticationMethods.Unspecified, SamlConstants.AuthenticationMethods.UnspecifiedString ), 39new Mapping( AuthenticationMethods.Windows, SamlConstants.AuthenticationMethods.WindowsString ), 40new Mapping( AuthenticationMethods.X509, SamlConstants.AuthenticationMethods.X509String ), 41new Mapping( AuthenticationMethods.Xkms, SamlConstants.AuthenticationMethods.XkmsString ), 46new Mapping( AuthenticationMethods.Kerberos, Saml2Constants.AuthenticationContextClasses.KerberosString ), 47new Mapping( AuthenticationMethods.Password, Saml2Constants.AuthenticationContextClasses.PasswordString ), 48new Mapping( AuthenticationMethods.Pgp, Saml2Constants.AuthenticationContextClasses.PgpString ), 49new Mapping( AuthenticationMethods.SecureRemotePassword, Saml2Constants.AuthenticationContextClasses.SecureRemotePasswordString ), 50new Mapping( AuthenticationMethods.Signature, Saml2Constants.AuthenticationContextClasses.XmlDsigString ), 51new Mapping( AuthenticationMethods.Spki, Saml2Constants.AuthenticationContextClasses.SpkiString ), 52new Mapping( AuthenticationMethods.Smartcard, Saml2Constants.AuthenticationContextClasses.SmartcardString ), 53new Mapping( AuthenticationMethods.SmartcardPki, Saml2Constants.AuthenticationContextClasses.SmartcardPkiString ), 54new Mapping( AuthenticationMethods.TlsClient, Saml2Constants.AuthenticationContextClasses.TlsClientString ), 55new Mapping( AuthenticationMethods.Unspecified, Saml2Constants.AuthenticationContextClasses.UnspecifiedString ), 56new Mapping( AuthenticationMethods.X509, Saml2Constants.AuthenticationContextClasses.X509String ), 57new Mapping( AuthenticationMethods.Windows, Saml2Constants.AuthenticationContextClasses.WindowsString ),
System\IdentityModel\Tokens\KerberosSecurityTokenHandler.cs (1)
99wi.AddClaim(new Claim(ClaimTypes.AuthenticationMethod, AuthenticationMethods.Windows, ClaimValueTypes.String));
System\IdentityModel\Tokens\RsaSecurityTokenHandler.cs (1)
172identity.AddClaim(new Claim(ClaimTypes.AuthenticationMethod, AuthenticationMethods.Signature));
System\IdentityModel\Tokens\WindowsUserNameSecurityTokenHandler.cs (1)
105windowsIdentity.AddClaim(new Claim(ClaimTypes.AuthenticationMethod, AuthenticationMethods.Password));
System\IdentityModel\Tokens\X509SecurityTokenHandler.cs (2)
545identity.AddClaim(new Claim(ClaimTypes.AuthenticationMethod, AuthenticationMethods.X509)); 577windowsIdentity.AddClaim(new Claim(ClaimTypes.AuthenticationMethod, AuthenticationMethods.X509));
System.ServiceModel (2)
System\ServiceModel\Security\IdentityModelServiceAuthorizationManager.cs (2)
237AddAuthenticationMethod( claimsIdentity, AuthenticationMethods.Windows ); 527AddAuthenticationMethod(claimsIdentity, AuthenticationMethods.Windows);