14 references to WindowsAccountType
mscorlib (2)
system\security\principal\windowsidentity.cs (2)
145
public WindowsIdentity (IntPtr userToken, string type,
WindowsAccountType
acctType) : this (userToken, type, -1) {}
150
public WindowsIdentity (IntPtr userToken, string type,
WindowsAccountType
acctType, bool isAuthenticated)
System (5)
net\System\Net\HttpListener.cs (3)
1321
internal static WindowsIdentity CreateWindowsIdentity(IntPtr userToken, string type,
WindowsAccountType
acctType, bool isAuthenticated)
1598
principal = new WindowsPrincipal(CreateWindowsIdentity(userContext.DangerousGetHandle(), DigestClient.AuthType,
WindowsAccountType
.Normal, true));
1693
WindowsPrincipal windowsPrincipal = new WindowsPrincipal(CreateWindowsIdentity(userContext.DangerousGetHandle(), context.ProtocolName,
WindowsAccountType
.Normal, true));
net\System\Net\SecureProtocols\_NegoState.cs (1)
337
result = new WindowsIdentity(token.DangerousGetHandle(), authtype,
WindowsAccountType
.Normal, true);
net\System\Net\WebSockets\HttpListenerWebSocketContext.cs (1)
151
windowsIdentity.AuthenticationType,
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 (4)
Hosting\IIS7WorkerRequest.cs (1)
2295
identity = new WindowsIdentity(pToken, authType,
WindowsAccountType
.Normal, true);
Security\WindowsAuthenticationModule.cs (1)
159
WindowsAccountType
.Normal,
WorkerRequest.cs (2)
603
return CreateWindowsIdentityWithAssert(token, ((authType == null) ? "" : authType),
WindowsAccountType
.Normal, isAuthenticated);
610
private static WindowsIdentity CreateWindowsIdentityWithAssert(IntPtr token, string authType,
WindowsAccountType
accountType, bool isAuthenticated) {