44 references to Identification
mscorlib (2)
system\security\principal\windowsidentity.cs (1)
412(uint) TokenImpersonationLevel.Identification,
system\security\principal\windowsprincipal.cs (1)
244(uint) TokenImpersonationLevel.Identification,
System (14)
net\System\Net\_NTAuthentication.cs (1)
359else if(request.ImpersonationLevel == TokenImpersonationLevel.Identification)
net\System\Net\SecureProtocols\_NegoState.cs (3)
149if (impersonationLevel != TokenImpersonationLevel.Identification && 201if (impersonationLevel == TokenImpersonationLevel.Identification) {flags |= ContextFlags.InitIdentify;} 306:_Context.IsIdentifyFlag? TokenImpersonationLevel.Identification
net\System\Net\SecureProtocols\NegotiateStream.cs (10)
69AuthenticateAsClient((NetworkCredential)CredentialCache.DefaultCredentials, null, string.Empty, ProtectionLevel.EncryptAndSign, TokenImpersonationLevel.Identification); 73AuthenticateAsClient(credential, null, targetName, ProtectionLevel.EncryptAndSign, TokenImpersonationLevel.Identification); 77AuthenticateAsClient(credential, binding, targetName, ProtectionLevel.EncryptAndSign, TokenImpersonationLevel.Identification); 109ProtectionLevel.EncryptAndSign, TokenImpersonationLevel.Identification, 117ProtectionLevel.EncryptAndSign, TokenImpersonationLevel.Identification, 125ProtectionLevel.EncryptAndSign, TokenImpersonationLevel.Identification, 181AuthenticateAsServer((NetworkCredential)CredentialCache.DefaultCredentials, null, ProtectionLevel.EncryptAndSign, TokenImpersonationLevel.Identification); 186AuthenticateAsServer((NetworkCredential)CredentialCache.DefaultCredentials, policy, ProtectionLevel.EncryptAndSign, TokenImpersonationLevel.Identification); 215return BeginAuthenticateAsServer((NetworkCredential)CredentialCache.DefaultCredentials, null, ProtectionLevel.EncryptAndSign, TokenImpersonationLevel.Identification, asyncCallback, asyncState); 221return BeginAuthenticateAsServer((NetworkCredential)CredentialCache.DefaultCredentials, policy, ProtectionLevel.EncryptAndSign, TokenImpersonationLevel.Identification, asyncCallback, asyncState);
System.IdentityModel (4)
System\IdentityModel\Selectors\KerberosSecurityTokenProvider.cs (2)
19: this(servicePrincipalName, TokenImpersonationLevel.Identification) 32if (tokenImpersonationLevel != TokenImpersonationLevel.Identification && tokenImpersonationLevel != TokenImpersonationLevel.Impersonation)
System\IdentityModel\Tokens\KerberosRequestorSecurityToken.cs (2)
46if (tokenImpersonationLevel != TokenImpersonationLevel.Identification && tokenImpersonationLevel != TokenImpersonationLevel.Impersonation) 154if (tokenImpersonationLevel == TokenImpersonationLevel.Identification)
System.Runtime.Remoting (4)
channels\ipc\ipcclientchannel.cs (1)
256private TokenImpersonationLevel _tokenImpersonationLevel = TokenImpersonationLevel.Identification;
channels\ipc\ipcport.cs (1)
130case TokenImpersonationLevel.Identification:
channels\tcp\tcpclientchannel.cs (1)
346private TokenImpersonationLevel _tokenImpersonationLevel = TokenImpersonationLevel.Identification; // default is no authentication
channels\tcp\tcpserverchannel.cs (1)
500TokenImpersonationLevel impLevel = TokenImpersonationLevel.Identification;
System.ServiceModel (17)
System\ServiceModel\Channels\TransportDefaults.cs (1)
197internal const TokenImpersonationLevel ImpersonationLevel = TokenImpersonationLevel.Identification;
System\ServiceModel\Channels\TransportSecurityHelpers.cs (2)
313impersonationLevel = TokenImpersonationLevel.Identification; 641this.impersonationLevel = TokenImpersonationLevel.Identification;
System\ServiceModel\Channels\WindowsStreamSecurityUpgradeProvider.cs (2)
213TokenImpersonationLevel.Identification); 287this.acceptor.parent.ProtectionLevel, TokenImpersonationLevel.Identification, callback, this);
System\ServiceModel\Configuration\Properties.cs (2)
1286properties.Add(new ConfigurationProperty("impersonationLevel", typeof(System.Security.Principal.TokenImpersonationLevel), System.Security.Principal.TokenImpersonationLevel.Identification, null, new System.ServiceModel.Configuration.ServiceModelEnumValidator(typeof(System.ServiceModel.Security.TokenImpersonationLevelHelper)), System.Configuration.ConfigurationPropertyOptions.None)); 3686properties.Add(new ConfigurationProperty("allowedImpersonationLevel", typeof(System.Security.Principal.TokenImpersonationLevel), System.Security.Principal.TokenImpersonationLevel.Identification, null, new System.ServiceModel.Configuration.ServiceModelEnumValidator(typeof(System.ServiceModel.Security.TokenImpersonationLevelHelper)), System.Configuration.ConfigurationPropertyOptions.None));
System\ServiceModel\Security\SecurityUtils.cs (7)
137|| value == TokenImpersonationLevel.Identification 155TokenImpersonationLevel.Identification, 162if (impersonationLevel == TokenImpersonationLevel.Identification) 217case TokenImpersonationLevel.Identification: 223case TokenImpersonationLevel.Identification: 518if (impersonationLevel == TokenImpersonationLevel.Identification) 527case TokenImpersonationLevel.Identification:
System\ServiceModel\Security\SpnegoTokenProvider.cs (1)
26TokenImpersonationLevel allowedImpersonationLevel = TokenImpersonationLevel.Identification;
System\ServiceModel\Security\WindowsClientCredential.cs (1)
14internal const TokenImpersonationLevel DefaultImpersonationLevel = TokenImpersonationLevel.Identification;
System\ServiceModel\Security\WindowsSspiNegotiation.cs (1)
340else if (this.isServer == false && this.impersonationLevel == TokenImpersonationLevel.Identification)
System.ServiceModel.Activities (3)
System\ServiceModel\Activities\InternalSendMessage.cs (1)
76this.TokenImpersonationLevel = TokenImpersonationLevel.Identification;
System\ServiceModel\Activities\Send.cs (2)
41this.TokenImpersonationLevel = TokenImpersonationLevel.Identification; 208[DefaultValue(TokenImpersonationLevel.Identification)]