37 references to AuthenticationLevel
System (7)
net\System\Net\_AuthenticationState.cs (1)
373if ((httpWebRequest.AuthenticationLevel == AuthenticationLevel.MutualAuthRequired) &&
net\System\Net\_NTAuthentication.cs (2)
364if (request.AuthenticationLevel == AuthenticationLevel.MutualAuthRequested || request.AuthenticationLevel == AuthenticationLevel.MutualAuthRequired)
net\System\Net\HttpWebRequest.cs (1)
5681if (AuthenticationLevel == AuthenticationLevel.MutualAuthRequired && !response.IsMutuallyAuthenticated)
net\System\Net\WebRequest.cs (3)
53private AuthenticationLevel m_AuthenticationLevel; 552m_AuthenticationLevel= AuthenticationLevel.MutualAuthRequested; 969public AuthenticationLevel AuthenticationLevel {
System.ServiceModel (30)
System\ServiceModel\Channels\HttpChannelFactory.cs (12)
611AuthenticationLevel authenticationLevel, TokenImpersonationLevel impersonationLevel) 633string GetConnectionGroupName(HttpWebRequest httpWebRequest, NetworkCredential credential, AuthenticationLevel authenticationLevel, 732TokenImpersonationLevel impersonationLevel, AuthenticationLevel authenticationLevel, 887AuthenticationLevel authenticationLevel; 1956SetupWebRequest(AuthenticationLevel.None, TokenImpersonationLevel.None, null); 2009SetupWebRequest(AuthenticationLevel.None, TokenImpersonationLevel.None, credential); 2014AuthenticationLevel authenticationLevel; 2025if (authenticationLevel == AuthenticationLevel.MutualAuthRequired) 2035void SetupWebRequest(AuthenticationLevel authenticationLevel, TokenImpersonationLevel impersonationLevel, NetworkCredential credential) 2149AuthenticationLevel authenticationLevel; 2163if ((authenticationLevel == AuthenticationLevel.MutualAuthRequired) && 2164(request.AuthenticationLevel != AuthenticationLevel.MutualAuthRequired))
System\ServiceModel\Channels\HttpChannelHelpers.cs (6)
3437out TokenImpersonationLevel impersonationLevel, out AuthenticationLevel authenticationLevel) 3440authenticationLevel = AuthenticationLevel.None; 3455out TokenImpersonationLevel impersonationLevel, out AuthenticationLevel authenticationLevel) 3458authenticationLevel = AuthenticationLevel.None; 3484if (authenticationLevel == AuthenticationLevel.MutualAuthRequired) 3795if ((request.AuthenticationLevel == AuthenticationLevel.MutualAuthRequired) &&
System\ServiceModel\Channels\TransportSecurityHelpers.cs (11)
22internal static string ToString(AuthenticationLevel authenticationLevel) 24if (authenticationLevel == AuthenticationLevel.MutualAuthRequested) 28else if (authenticationLevel == AuthenticationLevel.MutualAuthRequired) 32else if (authenticationLevel == AuthenticationLevel.None) 234out TokenImpersonationLevel impersonationLevel, out AuthenticationLevel authenticationLevel) 247out TokenImpersonationLevel impersonationLevel, out AuthenticationLevel authenticationLevel) 254AuthenticationLevel.MutualAuthRequested : AuthenticationLevel.MutualAuthRequired; 716out TokenImpersonationLevel impersonationLevel, out AuthenticationLevel authenticationLevel) 721AuthenticationLevel.MutualAuthRequested : AuthenticationLevel.MutualAuthRequired;
System\ServiceModel\Security\SecurityUtils.cs (1)
1122AuthenticationLevel authenticationLevel, TokenImpersonationLevel impersonationLevel)