9 references to Upn
System.ServiceModel.Http (1)
System\ServiceModel\Channels\HttpsChannelFactory.cs (1)
85|| ClaimTypes.Upn.Equals(identity.IdentityClaim.ClaimType)
System.ServiceModel.Primitives (8)
System\IdentityModel\Claims\Claim.cs (1)
186return new Claim(ClaimTypes.Upn, upn, Rights.PossessProperty, ClaimComparer.Upn);
System\IdentityModel\Claims\ClaimComparer.cs (1)
58if (claimType == ClaimTypes.Upn)
System\IdentityModel\Claims\X509CertificateClaimSet.cs (1)
251ClaimTypes.Upn.Equals(claimType) ||
System\ServiceModel\EndpointIdentity.cs (1)
63else if (identity.ClaimType.Equals(ClaimTypes.Upn))
System\ServiceModel\Security\SecurityUtils.cs (2)
216else if (ClaimTypes.Upn.Equals(identity.IdentityClaim.ClaimType)) 426identityClaim = new Claim(ClaimTypes.Upn, principalName, Rights.Identity);
System\ServiceModel\UpnEndpointIdentity.cs (2)
34if (!identity.ClaimType.Equals(ClaimTypes.Upn)) 36throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument(SRP.Format(SRP.UnrecognizedClaimTypeForIdentity, identity.ClaimType, ClaimTypes.Upn));