14 references to AuthenticationMethod
System.IdentityModel (12)
System\IdentityModel\Tokens\KerberosSecurityTokenHandler.cs (1)
99
wi.AddClaim(new Claim(ClaimTypes.
AuthenticationMethod
, AuthenticationMethods.Windows, ClaimValueTypes.String));
System\IdentityModel\Tokens\RsaSecurityTokenHandler.cs (1)
172
identity.AddClaim(new Claim(ClaimTypes.
AuthenticationMethod
, AuthenticationMethods.Signature));
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (3)
1144
case ClaimTypes.
AuthenticationMethod
:
1342
IEnumerable<Claim> claimCollection = from c in tokenDescriptor.Subject.Claims where c.Type == ClaimTypes.
AuthenticationMethod
select c;
1979
ClaimTypes.
AuthenticationMethod
,
System\IdentityModel\Tokens\SamlSecurityTokenHandler.cs (3)
359
where c.Type == ClaimTypes.
AuthenticationMethod
446
case ClaimTypes.
AuthenticationMethod
:
1406
subject.AddClaim(new Claim(ClaimTypes.
AuthenticationMethod
, NormalizeAuthenticationType(samlStatement.AuthenticationMethod), ClaimValueTypes.String, issuer));
System\IdentityModel\Tokens\SecurityTokenDescriptor.cs (1)
247
new Claim(ClaimTypes.
AuthenticationMethod
, authType, ClaimValueTypes.String));
System\IdentityModel\Tokens\WindowsUserNameSecurityTokenHandler.cs (1)
105
windowsIdentity.AddClaim(new Claim(ClaimTypes.
AuthenticationMethod
, AuthenticationMethods.Password));
System\IdentityModel\Tokens\X509SecurityTokenHandler.cs (2)
545
identity.AddClaim(new Claim(ClaimTypes.
AuthenticationMethod
, AuthenticationMethods.X509));
577
windowsIdentity.AddClaim(new Claim(ClaimTypes.
AuthenticationMethod
, AuthenticationMethods.X509));
System.ServiceModel (2)
System\ServiceModel\Security\IdentityModelServiceAuthorizationManager.cs (2)
564
claimsIdentity.Claims.FirstOrDefault(claim => claim.Type == System.Security.Claims.ClaimTypes.
AuthenticationMethod
);
571
System.Security.Claims.ClaimTypes.
AuthenticationMethod
, authenticationMethod));