14 references to AuthenticationMethod
System.IdentityModel (12)
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\Saml2SecurityTokenHandler.cs (3)
1144case ClaimTypes.AuthenticationMethod: 1342IEnumerable<Claim> claimCollection = from c in tokenDescriptor.Subject.Claims where c.Type == ClaimTypes.AuthenticationMethod select c; 1979ClaimTypes.AuthenticationMethod,
System\IdentityModel\Tokens\SamlSecurityTokenHandler.cs (3)
359where c.Type == ClaimTypes.AuthenticationMethod 446case ClaimTypes.AuthenticationMethod: 1406subject.AddClaim(new Claim(ClaimTypes.AuthenticationMethod, NormalizeAuthenticationType(samlStatement.AuthenticationMethod), ClaimValueTypes.String, issuer));
System\IdentityModel\Tokens\SecurityTokenDescriptor.cs (1)
247new Claim(ClaimTypes.AuthenticationMethod, authType, ClaimValueTypes.String));
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)
564claimsIdentity.Claims.FirstOrDefault(claim => claim.Type == System.Security.Claims.ClaimTypes.AuthenticationMethod); 571System.Security.Claims.ClaimTypes.AuthenticationMethod, authenticationMethod));