//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ /* * IHttpModule interface * * Copyright (c) 2000 Microsoft Corporation */ namespace System.Web { using System; using System.Security.Permissions; /// /// Provides module initialization and tear-down events to the inheriting class. /// public interface IHttpModule { /// /// Invoked by ASP.NET to enable a module to set itself up to handle /// requests. /// void Init(HttpApplication context); /// /// Invoked by ASP.NET to enable a module to perform any final cleanup work prior to tear-down. /// void Dispose(); } }