ISAPIRuntime.cs 481 B

12345678910111213141516171819202122
  1. //
  2. // System.Web.Hosting.ISAPIRuntime.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 sealed class ISAPIRuntime : IISAPIRuntime
  13. {
  14. public ISAPIRuntime();
  15. public void DoGCCollect();
  16. public int ProcessRequest(IntPtr ecb, int iWRType);
  17. public void StartProcessing();
  18. public void StopProcessing();
  19. }
  20. }