August 2003
Intermediate to advanced
928 pages
32h 1m
English
IAuthenticationModule
This interface is implemented by all
authentication modules. If you
develop a custom authentication module, you must implement this
interface and register an instance of your module with
AuthenticationManager.Register( ).
public interface IAuthenticationModule { // Public Instance Properties public string AuthenticationType{get; } public bool CanPreAuthenticate{get; } // Public Instance Methods public Authorization Authenticate(stringchallenge,WebRequestrequest, ICredentialscredentials); public Authorization PreAuthenticate(WebRequestrequest, ICredentialscredentials); }
AuthenticationManager.{Register( ),
Unregister( )}