* SessionInProcHandler.cs: Use AppDomain.SetData so data is
[mono.git] / mcs / class / System.Web / System.Web.SessionState / IStateRuntime.cs
1 //
2 // System.Web.SessionState.IStateRuntime.cs
3 //
4 // Author:
5 //   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
6 //
7 // (C) 2003 Andreas Nahr
8 //
9
10 using System;
11
12 namespace System.Web.SessionState
13 {
14         public interface IStateRuntime
15         {
16                 void ProcessRequest (IntPtr tracker, int verb,
17                         string uri, int exclusive, int timeout,
18                         int lockCookieExists, int lockCookie,
19                         int contentLength, IntPtr content);
20
21                 void StopProcessing ();
22         }
23 }