5 writes to Module
System (5)
net\System\Net\_AuthenticationManager2.cs (2)
83httpWebRequest.CurrentAuthenticationState.Module = authenticationModule; 176httpWebRequest.CurrentAuthenticationState.Module = authenticationModule;
net\System\Net\_AuthenticationManagerDefault.cs (2)
210httpWebRequest.CurrentAuthenticationState.Module = authenticationModule; 305httpWebRequest.CurrentAuthenticationState.Module = authenticationModule;
net\System\Net\_AuthenticationState.cs (1)
411Module = null;
13 references to Module
System (13)
net\System\Net\_AuthenticationManager2.cs (2)
65if (httpWebRequest != null && httpWebRequest.CurrentAuthenticationState.Module != null) 68httpWebRequest.CurrentAuthenticationState.Module.Authenticate(challenge, request, credentials);
net\System\Net\_AuthenticationManagerDefault.cs (2)
187if (httpWebRequest != null && httpWebRequest.CurrentAuthenticationState.Module != null) 189response = httpWebRequest.CurrentAuthenticationState.Module.Authenticate(challenge, request, credentials);
net\System\Net\_AuthenticationState.cs (8)
53GlobalLog.Print("AuthenticationState#" + ValidationHelper.HashString(this) + "::GetSecurityContext(" + module.AuthenticationType + ") returning NTAuthentication#" + ValidationHelper.HashString((object)module==(object)Module ? SecurityContext : null)); 54return (object)module==(object)Module ? SecurityContext : null; 344ISessionAuthenticationModule myModule = Module as ISessionAuthenticationModule; 353GlobalLog.Print("AuthenticationState#" + ValidationHelper.HashString(this) + "::Update() Complete:" + Authorization.Complete.ToString() + " Module:" + ValidationHelper.ToString(Module) + " challenge:" + ValidationHelper.ToString(challenge)); 391if (httpWebRequest.PreAuthenticate && Module != null && Authorization.Complete && Module.CanPreAuthenticate && httpWebRequest.ResponseStatusCode != StatusCodeMatch) { 393AuthenticationManager.BindModule(ChallengedUri, Authorization, Module); 410ISessionAuthenticationModule myModule = Module as ISessionAuthenticationModule;
net\System\Net\_Connection.cs (1)
2262&& (request.CurrentAuthenticationState == null || request.CurrentAuthenticationState.Module == null)))