6 references to Spn
dotnet-svcutil-lib (6)
FrameworkFork\System.ServiceModel\System\IdentityModel\Claims\Claim.cs (1)
138return new Claim(ClaimTypes.Spn, spn, Rights.PossessProperty);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\IdentityVerifier.cs (1)
195IEnumerable<Claim> claims = claimSet.FindClaims(ClaimTypes.Spn, Rights.PossessProperty);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SecurityUtils.cs (2)
386if (ClaimTypes.Spn.Equals(identity.IdentityClaim.ClaimType)) 521identityClaim = new Claim(ClaimTypes.Spn, principalName, Rights.Identity);
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));