mscorlib(4.0.0.0) API with additions
IAuthenticationModule.cs
1 namespace System.Net
2 {
4  public interface IAuthenticationModule
5  {
10  {
11  get;
12  }
13 
16  string AuthenticationType
17  {
18  get;
19  }
20 
26  Authorization Authenticate(string challenge, WebRequest request, ICredentials credentials);
27 
33  }
34 }
Contains an authentication message for an Internet server.
Definition: Authorization.cs:4
string AuthenticationType
Gets the authentication type provided by this authentication module.
Makes a request to a Uniform Resource Identifier (URI). This is an abstract class.
Definition: WebRequest.cs:21
Authorization PreAuthenticate(WebRequest request, ICredentials credentials)
Returns an instance of the T:System.Net.Authorization class for an authentication request to a server...
bool CanPreAuthenticate
Gets a value indicating whether the authentication module supports preauthentication.
Provides the base authentication interface for retrieving credentials for Web client authentication.
Definition: ICredentials.cs:5
Provides the base authentication interface for Web client authentication modules.
Authorization Authenticate(string challenge, WebRequest request, ICredentials credentials)
Returns an instance of the T:System.Net.Authorization class in respose to an authentication challenge...