2003-07-30 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
[mono.git] / mcs / class / System.Web / System.Web.SessionState / StateRuntime.cs
1 //
2 // System.Web.SessionState.StateRuntime.cs
3 //
4 // Author:
5 //   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
6 //
7 // (C) 2003 Andreas Nahr
8 //
9
10 namespace System.Web.SessionState
11 {
12         public sealed class StateRuntime : IStateRuntime
13         {
14                 [MonoTODO]
15                 public void ProcessRequest (IntPtr tracker, int verb,
16                         string uri, int exclusive, int timeout,
17                         int lockCookieExists, int lockCookie,
18                         int contentLength, IntPtr content)
19                 {
20                         throw new NotImplementedException ();
21                 }
22
23                 [MonoTODO]
24                 public void StopProcessing ()
25                 {
26                         throw new NotImplementedException ();
27                 }
28         }
29 }