13 references to Sid
System.IdentityModel (9)
System\IdentityModel\Claims\Claim.cs (1)
191return new Claim(ClaimTypes.Sid, sid, Rights.PossessProperty);
System\IdentityModel\Claims\ClaimSet.cs (1)
43claims.Add(new Claim(ClaimTypes.Sid, sid, Rights.Identity));
System\IdentityModel\Claims\WindowsClaimSet.cs (5)
155claims.Add(new Claim(ClaimTypes.Sid, this.windowsIdentity.User, Rights.Identity)); 188ClaimTypes.Sid == claimType || 201else if (this.claims == null && (ClaimTypes.Sid == claimType || ClaimTypes.DenyOnlySid == claimType)) 203if (ClaimTypes.Sid == claimType) 207yield return new Claim(ClaimTypes.Sid, this.windowsIdentity.User, Rights.Identity);
System\IdentityModel\Tokens\SessionSecurityToken.cs (2)
1519else if (SysClaimTypes.Sid.Equals(claim.ClaimType)) 1649return new SysClaim(SysClaimTypes.Sid, new SecurityIdentifier(sidBytes, 0), right);
System.ServiceModel (4)
System\ServiceModel\Channels\MsmqChannelListenerBase.cs (1)
210claims.Add(new Claim(ClaimTypes.Sid, securityIdentifier, Rights.Identity));
System\ServiceModel\Security\IdentityVerifier.cs (1)
306if (ClaimTypes.Sid.Equals(identity.IdentityClaim.ClaimType))
System\ServiceModel\Security\SctClaimSerializer.cs (2)
65else if (ClaimTypes.Sid.Equals(claim.ClaimType)) 239return new Claim(ClaimTypes.Sid, new SecurityIdentifier(sidBytes, 0), right);