ISAPIRuntime.cs 895 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //
  2. // System.Web.Hosting.ISAPIRuntime.cs
  3. //
  4. // Author:
  5. // Bob Smith <[email protected]>
  6. // Gonzalo Paniagua ([email protected])
  7. //
  8. // (C) Bob Smith
  9. // (c) 2002 Ximian, Inc. (http://www.ximian.com)
  10. //
  11. using System;
  12. namespace System.Web.Hosting
  13. {
  14. public sealed class ISAPIRuntime : IISAPIRuntime
  15. {
  16. [MonoTODO]
  17. public ISAPIRuntime ()
  18. {
  19. throw new NotImplementedException ();
  20. }
  21. [MonoTODO]
  22. public void DoGCCollect ()
  23. {
  24. throw new NotImplementedException ();
  25. }
  26. [MonoTODO]
  27. public int ProcessRequest (IntPtr ecb, int iWRType)
  28. {
  29. throw new NotImplementedException ();
  30. }
  31. [MonoTODO]
  32. public void StartProcessing ()
  33. {
  34. throw new NotImplementedException ();
  35. }
  36. [MonoTODO]
  37. public void StopProcessing ()
  38. {
  39. throw new NotImplementedException ();
  40. }
  41. }
  42. }