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