15 references to ClaimType
dotnet-svcutil-lib (15)
FrameworkFork\System.ServiceModel\System\IdentityModel\Claims\ClaimComparer.cs (3)
150if (claim1.ClaimType != claim2.ClaimType || claim1.Right != claim2.Right) 161return claim.ClaimType.GetHashCode() ^ claim.Right.GetHashCode()
FrameworkFork\System.ServiceModel\System\IdentityModel\Claims\ClaimSet.cs (1)
100IEnumerable<Claim> claims = FindClaims(claim.ClaimType, claim.Right);
FrameworkFork\System.ServiceModel\System\IdentityModel\Claims\DefaultClaimSet.cs (1)
78(anyClaimType || claimType == claim.ClaimType) &&
FrameworkFork\System.ServiceModel\System\IdentityModel\Claims\X509CertificateClaimSet.cs (1)
290(anyClaimType || claimType.Equals(claim.ClaimType)) &&
FrameworkFork\System.ServiceModel\System\ServiceModel\DnsEndpointIdentity.cs (2)
28if (!identity.ClaimType.Equals(ClaimTypes.Dns)) 29throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument(string.Format(SRServiceModel.UnrecognizedClaimTypeForIdentity, identity.ClaimType, ClaimTypes.Dns));
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\IdentityVerifier.cs (2)
92&& identity.IdentityClaim.ClaimType == ClaimTypes.Dns 233if (ClaimTypes.Dns.Equals(identity.IdentityClaim.ClaimType))
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SecurityUtils.cs (3)
386if (ClaimTypes.Spn.Equals(identity.IdentityClaim.ClaimType)) 391else if (ClaimTypes.Upn.Equals(identity.IdentityClaim.ClaimType)) 396else if (ClaimTypes.Dns.Equals(identity.IdentityClaim.ClaimType))
FrameworkFork\System.ServiceModel\System\ServiceModel\SpnEndpointIdentity.cs (2)
54if (!identity.ClaimType.Equals(ClaimTypes.Spn)) 55throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument(string.Format(SRServiceModel.UnrecognizedClaimTypeForIdentity, identity.ClaimType, ClaimTypes.Spn));