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