5 implementations of AuthenticationType
System (5)
net\System\Net\_BasicClient.cs (1)
78public string AuthenticationType {
net\System\Net\_DigestClient.cs (1)
150public string AuthenticationType {
net\System\Net\_KerberosClient.cs (1)
131public string AuthenticationType {
net\System\Net\_NegotiateClient.cs (1)
146public string AuthenticationType {
net\System\Net\_NtlmClient.cs (1)
139public string AuthenticationType {
21 references to AuthenticationType
System (21)
net\System\Net\_AuthenticationManager2.cs (9)
94+ authenticationModule.AuthenticationType + "]"); 197"AuthenticationManager::Register() registering :[" + authenticationModule.AuthenticationType + "]"); 199string normalizedAuthenticationType = authenticationModule.AuthenticationType.ToUpperInvariant(); 219+ authenticationModule.AuthenticationType + "]"); 221string normalizedAuthenticationType = authenticationModule.AuthenticationType.ToUpperInvariant(); 280moduleBinding.Add(prefix[k], module.AuthenticationType.ToUpperInvariant()); 291moduleBinding.Add(prefix, module.AuthenticationType); 344"WebRequest::Initialize(): Register:" + moduleToRegister.AuthenticationType); 347moduleToRegister.AuthenticationType.ToUpperInvariant();
net\System\Net\_AuthenticationManagerDefault.cs (10)
124"WebRequest::Initialize(): Register:" + moduleToRegister.AuthenticationType); 125RemoveAuthenticationType(moduleListCopy, moduleToRegister.AuthenticationType); 152((IAuthenticationModule)list[i]).AuthenticationType, 219GlobalLog.Print("AuthenticationManager::Authenticate() found IAuthenticationModule:[" + authenticationModule.AuthenticationType + "]"); 326"AuthenticationManager::Register() registering :[" + authenticationModule.AuthenticationType + "]"); 330IAuthenticationModule existentModule = findModule(authenticationModule.AuthenticationType); 352+ authenticationModule.AuthenticationType + "]"); 427moduleBinding.Add(prefix[k], module.AuthenticationType); 438moduleBinding.Add(prefix, module.AuthenticationType); 454authenticationModule.AuthenticationType,
net\System\Net\_AuthenticationState.cs (2)
53GlobalLog.Print("AuthenticationState#" + ValidationHelper.HashString(this) + "::GetSecurityContext(" + module.AuthenticationType + ") returning NTAuthentication#" + ValidationHelper.HashString((object)module==(object)Module ? SecurityContext : null)); 58GlobalLog.Print("AuthenticationState#" + ValidationHelper.HashString(this) + "::SetSecurityContext(" + module.AuthenticationType + ") was NTAuthentication#" + ValidationHelper.HashString(SecurityContext) + " now NTAuthentication#" + ValidationHelper.HashString(securityContext));