| 1234567891011121314151617181920212223242526272829 |
- //
- // 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 ();
- }
- }
- }
|