IStateRuntime.cs 627 B

123456789101112131415161718192021222324252627
  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. using System.Runtime.InteropServices;
  11. namespace System.Web.SessionState
  12. {
  13. [Guid ("7297744b-e188-40bf-b7e9-56698d25cf44")]
  14. [InterfaceType (ComInterfaceType.InterfaceIsIUnknown)]
  15. public interface IStateRuntime
  16. {
  17. void ProcessRequest (
  18. [In] IntPtr tracker, [In] int verb,
  19. [In] string uri, [In] int exclusive, [In] int timeout,
  20. [In] int lockCookieExists, [In] int lockCookie,
  21. [In] int contentLength, [In] IntPtr content);
  22. void StopProcessing ();
  23. }
  24. }