14 references to WindowsIdentity
System.IdentityModel (8)
System\IdentityModel\SecurityUtils.cs (1)
697return new WindowsIdentity(token, authenticationType);
System\IdentityModel\Selectors\WindowsUserNameSecurityTokenAuthenticator.cs (1)
58WindowsIdentity windowsIdentity = new WindowsIdentity(tokenHandle.DangerousGetHandle(), SecurityUtils.AuthTypeBasic);
System\IdentityModel\Selectors\X509SecurityTokenAuthenticator.cs (2)
112windowsIdentity = new WindowsIdentity(initialWindowsIdentity.Token, SecurityUtils.AuthTypeCertMap); 277return new WindowsIdentity(tokenHandle.DangerousGetHandle(), SecurityUtils.AuthTypeCertMap);
System\IdentityModel\Tokens\KerberosReceiverSecurityToken.cs (1)
268WindowsIdentity windowsIdentity = new WindowsIdentity( tokenHandle.DangerousGetHandle(), SecurityUtils.AuthTypeKerberos);
System\IdentityModel\Tokens\KerberosSecurityTokenHandler.cs (1)
95WindowsIdentity wi = new WindowsIdentity(kerbToken.WindowsIdentity.Token, kerbToken.WindowsIdentity.AuthenticationType);
System\IdentityModel\Tokens\SessionSecurityToken.cs (1)
941identity = new WindowsIdentity(winId.Token, authenticationType);
System\IdentityModel\Tokens\X509SecurityTokenHandler.cs (1)
556windowsIdentity = new WindowsIdentity(x509WindowsSecurityToken.WindowsIdentity.Token, x509WindowsSecurityToken.AuthenticationType);
System.ServiceModel (5)
System\ServiceModel\Security\IdentityModelServiceAuthorizationManager.cs (2)
235WindowsIdentity claimsIdentity = new WindowsIdentity( windowsSecurityToken.WindowsIdentity.Token, 524claimsIdentity = MergeClaims(claimsIdentity, new WindowsIdentity(windowsClaimSet.WindowsIdentity.Token,
System\ServiceModel\Security\SecurityUtils.cs (1)
506return new WindowsIdentity(token, authType);
System\ServiceModel\Security\SpnegoTokenAuthenticator.cs (1)
136WindowsIdentity windowsIdentity = new WindowsIdentity(contextToken.DangerousGetHandle(), windowsNegotiation.ProtocolName);
System\ServiceModel\Security\TlsSspiNegotiation.cs (1)
688mappedIdentity = new WindowsIdentity(token.DangerousGetHandle(), SecurityUtils.AuthTypeCertMap);
System.Web (1)
Management\WebEvents.cs (1)
1961_iprincipal = new WindowsPrincipal(new WindowsIdentity(winIdentity.Token, winIdentity.AuthenticationType));