System.Web: New Implementations.
[mono.git] / mcs / class / System.Web / System.Web / IHttpModule.cs
1 //
2 // System.Web.IHttpModule.cs
3 //
4 // Author:
5 //   Bob Smith <bob@thestuff.net>
6 //
7 // (C) Bob Smith
8 //
9
10 namespace System.Web
11 {
12         public interface IHttpModule
13         {
14                 void Dispose();
15                 void Init(HttpApplication context);
16         }
17 }