March 2002
Intermediate to advanced
864 pages
31h 8m
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 field string AuthenticationType{get; } public field bool CanPreAuthenticate{get; } // Public Instance Methods public method Authorization Authenticate(string challenge, WebRequest request, ICredentials credentials); public method Authorization PreAuthenticate( WebRequest request, ICredentials credentials); }
AuthenticationManager.{Register(), Unregister()}