HttpModuleBase.Init(HttpApplication) Method

Definition

Initializes the HTTP module.

public:
 virtual void Init(System::Web::HttpApplication ^ context);
public void Init (System.Web.HttpApplication context);
abstract member Init : System.Web.HttpApplication -> unit
override this.Init : System.Web.HttpApplication -> unit
Public Sub Init (context As HttpApplication)

Parameters

context
HttpApplication

The application object which contains this module.

Implements

Remarks

This method implements the IHttpModule.Init method by initializing the FederationConfiguration property to the value of the FederatedAuthentication.FederationConfiguration property, invoking the InitializeModule method, and then invoking the InitializePropertiesFromConfiguration method.

Derived classes override the InitializeModule and InitializePropertiesFromConfiguration methods.

Applies to