IISAPIRuntime.cs 562 B

123456789101112131415161718192021222324
  1. //
  2. // System.Web.Hosting.IISAPIRuntime.cs
  3. //
  4. // Author:
  5. // Bob Smith <[email protected]>
  6. //
  7. // (C) Bob Smith
  8. //
  9. using System;
  10. using System.Runtime.InteropServices;
  11. namespace System.Web.Hosting
  12. {
  13. [Guid ("c4918956-485b-3503-bd10-9083e3f6b66c")]
  14. [InterfaceType (ComInterfaceType.InterfaceIsIUnknown)]
  15. public interface IISAPIRuntime
  16. {
  17. void DoGCCollect ();
  18. int ProcessRequest ([In] IntPtr ecb, [In] int useProcessModel);
  19. void StartProcessing ();
  20. void StopProcessing ();
  21. }
  22. }