8 references to WindowsIdentity
System (2)
net\System\Net\HttpListener.cs (1)
1323
return new
WindowsIdentity
(userToken, type, acctType, isAuthenticated);
net\System\Net\SecureProtocols\_NegoState.cs (1)
337
result = new
WindowsIdentity
(token.DangerousGetHandle(), authtype, WindowsAccountType.Normal, true);
System.IdentityModel (3)
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (1)
423
return new
WindowsIdentity
(wi.Token, AuthenticationTypes.Federation, WindowsAccountType.Normal, true);
System\IdentityModel\Tokens\SamlSecurityTokenHandler.cs (1)
1070
return new
WindowsIdentity
(wi.Token, AuthenticationTypes.Federation, WindowsAccountType.Normal, true);
System\IdentityModel\Tokens\WindowsUserNameSecurityTokenHandler.cs (1)
101
WindowsIdentity windowsIdentity = new
WindowsIdentity
(tokenHandle.DangerousGetHandle(), AuthenticationTypes.Password, WindowsAccountType.Normal, true);
System.Web (3)
Hosting\IIS7WorkerRequest.cs (1)
2295
identity = new
WindowsIdentity
(pToken, authType, WindowsAccountType.Normal, true);
Security\WindowsAuthenticationModule.cs (1)
156
identity = new
WindowsIdentity
(
WorkerRequest.cs (1)
611
return new
WindowsIdentity
(token, authType, accountType, isAuthenticated);