|
|
@@ -0,0 +1,29 @@
|
|
|
+//
|
|
|
+// System.Web.SessionState.StateRuntime.cs
|
|
|
+//
|
|
|
+// Author:
|
|
|
+// Andreas Nahr ([email protected])
|
|
|
+//
|
|
|
+// (C) 2003 Andreas Nahr
|
|
|
+//
|
|
|
+
|
|
|
+namespace System.Web.SessionState
|
|
|
+{
|
|
|
+ public sealed class StateRuntime : IStateRuntime
|
|
|
+ {
|
|
|
+ [MonoTODO]
|
|
|
+ public void ProcessRequest (IntPtr tracker, int verb,
|
|
|
+ string uri, int exclusive, int timeout,
|
|
|
+ int lockCookieExists, int lockCookie,
|
|
|
+ int contentLength, IntPtr content)
|
|
|
+ {
|
|
|
+ throw new NotImplementedException ();
|
|
|
+ }
|
|
|
+
|
|
|
+ [MonoTODO]
|
|
|
+ public void StopProcessing ()
|
|
|
+ {
|
|
|
+ throw new NotImplementedException ();
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|