2003-03-31 Stefan G�rling <stefan@gorling.se>
[mono.git] / mcs / class / System.Web / System.Web.SessionState / ISessionHandler.cs
diff --git a/mcs/class/System.Web/System.Web.SessionState/ISessionHandler.cs b/mcs/class/System.Web/System.Web.SessionState/ISessionHandler.cs
new file mode 100644 (file)
index 0000000..b1a0548
--- /dev/null
@@ -0,0 +1,20 @@
+//
+// System.Web.SessionState.ISessionHandler
+//
+// Authors:
+//     Stefan Görling, (stefan@gorling.se)
+//
+// (C) 2003 Stefan Görling
+//
+// This interface is simple, but as it's internal it shouldn't be hard to change it if we need to.
+//
+namespace System.Web.SessionState
+{
+       internal interface ISessionHandler
+       {
+             void Dispose ();
+             void Init (HttpApplication context);
+             void UpdateContext (HttpContext context);
+       }
+}
+