DefaultAuthenticationModule

DefaultAuthenticationModule

System.Web.Security (system.web.dll)sealed class

The ASP.NET framework uses this authentication module automatically when no other authentication module is specified in the current context (for example, when you set <authentication mode="None"> in the web.config file. This is similar to how many traditional ASP applications work. IIS authentication is still used and access to local system resources is provided in the context of a local system process account (or the IUSR_MACHINENAME account) according to the IIS settings. However, ASP.NET page requests will not require additional authentication.

public sealed class DefaultAuthenticationModule : System.Web.IHttpModule {
// Public Constructors
   public DefaultAuthenticationModule( );
// Public Instance Methods
   public void Dispose( );                           // implements System.Web.IHttpModule
   public void Init(System.Web.HttpApplication app); // implements System.Web.IHttpModule
// Events
   public event DefaultAuthenticationEventHandler Authenticate;
}


    Part I: Introduction to ASP.NET
    Part III: Namespace Reference
    Chapter 40. The System.Web.UI.MobileControls Namespace
    Chapter 42. The System.Web.UI.WebControls Namespace