2003-03-31 Stefan G�rling <stefan@gorling.se>
[mono.git] / mcs / class / System.Web / System.Web.SessionState / ISessionHandler.cs
1 //
2 // System.Web.SessionState.ISessionHandler
3 //
4 // Authors:
5 //      Stefan Görling, (stefan@gorling.se)
6 //
7 // (C) 2003 Stefan Görling
8 //
9 // This interface is simple, but as it's internal it shouldn't be hard to change it if we need to.
10 //
11 namespace System.Web.SessionState
12 {
13         internal interface ISessionHandler
14         {
15               void Dispose ();
16               void Init (HttpApplication context);
17               void UpdateContext (HttpContext context);
18         }
19 }
20