| 1234567891011121314151617181920212223 |
- //
- // System.Web.SessionState.IStateRuntime.cs
- //
- // Author:
- // Andreas Nahr ([email protected])
- //
- // (C) 2003 Andreas Nahr
- //
- using System;
- namespace System.Web.SessionState
- {
- public interface IStateRuntime
- {
- void ProcessRequest (IntPtr tracker, int verb,
- string uri, int exclusive, int timeout,
- int lockCookieExists, int lockCookie,
- int contentLength, IntPtr content);
- void StopProcessing ();
- }
- }
|