IISAPIRuntime.cs 409 B

123456789101112131415161718192021
  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. namespace System.Web.Hosting
  11. {
  12. public interface IISAPIRuntime
  13. {
  14. void DoGCCollect ();
  15. int ProcessRequest (IntPtr ecb, int useProcessModel);
  16. void StartProcessing ();
  17. void StopProcessing ();
  18. }
  19. }