1 interface inheriting from IAuthenticationModule
System (1)
net\System\Net\_ISessionAuthenticationModule.cs (1)
10internal interface ISessionAuthenticationModule : IAuthenticationModule {
1 implementation of IAuthenticationModule
System (1)
net\System\Net\_BasicClient.cs (1)
12internal class BasicClient : IAuthenticationModule {
42 references to IAuthenticationModule
PresentationCore (1)
Core\CSharp\MS\Internal\AppModel\CustomCredentialPolicy.cs (1)
118public bool ShouldSendCredential(Uri challengeUri, WebRequest request, NetworkCredential credential, IAuthenticationModule authenticationModule)
System (41)
net\System\Net\_AuthenticationManager2.cs (10)
22private ConcurrentDictionary<string, IAuthenticationModule> moduleList = null; 73foreach (IAuthenticationModule authenticationModule in this.moduleList.Values) 122IAuthenticationModule authenticationModule; 189public override void Register(IAuthenticationModule authenticationModule) 210public override void Unregister(IAuthenticationModule authenticationModule) 263public override void BindModule(Uri uri, Authorization response, IAuthenticationModule module) 326this.moduleList = new ConcurrentDictionary<string, IAuthenticationModule>(); 327IAuthenticationModule moduleToRegister; 340) as IAuthenticationModule; 369IAuthenticationModule removedModule;
net\System\Net\_AuthenticationManagerBase.cs (3)
191public abstract void Register(IAuthenticationModule authenticationModule); 196public abstract void Unregister(IAuthenticationModule authenticationModule); 221public abstract void BindModule(Uri uri, Authorization response, IAuthenticationModule module);
net\System\Net\_AuthenticationManagerDefault.cs (15)
108IAuthenticationModule moduleToRegister; 120CultureInfo.InvariantCulture) as IAuthenticationModule; 152((IAuthenticationModule)list[i]).AuthenticationType, 201IAuthenticationModule authenticationModule = (IAuthenticationModule)ModuleList[i]; 249IAuthenticationModule authenticationModule; 318public override void Register(IAuthenticationModule authenticationModule) 330IAuthenticationModule existentModule = findModule(authenticationModule.AuthenticationType); 343public override void Unregister(IAuthenticationModule authenticationModule) 378IAuthenticationModule existentModule = findModule(authenticationScheme); 410public override void BindModule(Uri uri, Authorization response, IAuthenticationModule module) 445private IAuthenticationModule findModule(string authenticationType) 447IAuthenticationModule returnAuthenticationModule = null; 449IAuthenticationModule authenticationModule; 452authenticationModule = (IAuthenticationModule)moduleList[k];
net\System\Net\_AuthenticationState.cs (3)
34internal IAuthenticationModule Module; 52internal NTAuthentication GetSecurityContext(IAuthenticationModule module) { 57internal void SetSecurityContext(NTAuthentication securityContext, IAuthenticationModule module) {
net\System\Net\_IAuthenticationManager.cs (3)
47void Register(IAuthenticationModule authenticationModule); 49void Unregister(IAuthenticationModule authenticationModule); 58void BindModule(Uri uri, Authorization response, IAuthenticationModule module);
net\System\Net\AuthenticationManager.cs (5)
32IAuthenticationModule authenticationModule); 204public static void Register(IAuthenticationModule authenticationModule) 213public static void Unregister(IAuthenticationModule authenticationModule) 250internal static void BindModule(Uri uri, Authorization response, IAuthenticationModule module) 401IAuthenticationModule thisModule,
net\System\Net\Configuration\AuthenticationModulesSection.cs (1)
89if (!typeof(IAuthenticationModule).IsAssignableFrom(type))
net\System\Net\IntranetCredentialPolicy.cs (1)
78public virtual bool ShouldSendCredential(Uri challengeUri, WebRequest request, NetworkCredential credential, IAuthenticationModule authModule)