HttpModuleBase.Init(HttpApplication) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.