WebServiceHandler.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. //
  2. // System.Web.Services.Protocols.WebServiceHandler.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. using System;
  10. using System.Web.Services;
  11. namespace System.Web.Services.Protocols {
  12. internal class WebServiceHandler {
  13. #region Fields
  14. ServerProtocol protocol;
  15. #endregion // Fields
  16. #region Constructors
  17. [MonoTODO]
  18. public WebServiceHandler (ServerProtocol protocol)
  19. {
  20. this.protocol = protocol;
  21. }
  22. #endregion // Constructors
  23. #region Methods
  24. [MonoTODO]
  25. protected IAsyncResult BeginCoreProcessRequest (AsyncCallback callback, object o)
  26. {
  27. throw new NotImplementedException ();
  28. }
  29. [MonoTODO]
  30. protected void CoreProcessRequest ()
  31. {
  32. Invoke ();
  33. throw new NotImplementedException ();
  34. }
  35. [MonoTODO]
  36. protected void EndCoreProcessRequest (IAsyncResult result)
  37. {
  38. throw new NotImplementedException ();
  39. }
  40. [MonoTODO]
  41. private void Invoke ()
  42. {
  43. //WriteReturns (returnValues);
  44. throw new NotImplementedException ();
  45. }
  46. [MonoTODO]
  47. private void WriteReturns (object[] returnValues)
  48. {
  49. //protocol.WriteReturns (returnValues, outputStream);
  50. throw new NotImplementedException ();
  51. }
  52. #endregion // Methods
  53. }
  54. }