2
0

IStateRuntime.cs 435 B

1234567891011121314151617181920212223
  1. //
  2. // System.Web.SessionState.IStateRuntime.cs
  3. //
  4. // Author:
  5. // Andreas Nahr ([email protected])
  6. //
  7. // (C) 2003 Andreas Nahr
  8. //
  9. using System;
  10. namespace System.Web.SessionState
  11. {
  12. public interface IStateRuntime
  13. {
  14. void ProcessRequest (IntPtr tracker, int verb,
  15. string uri, int exclusive, int timeout,
  16. int lockCookieExists, int lockCookie,
  17. int contentLength, IntPtr content);
  18. void StopProcessing ();
  19. }
  20. }