SoapServerProtocol.cs 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. //
  2. // System.Web.Services.Protocols.SoapServerProtocol.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. using System.IO;
  10. using System.Web.Services;
  11. namespace System.Web.Services.Protocols {
  12. [MonoTODO ("Figure out what this class does.")]
  13. internal class SoapServerProtocol : ServerProtocol {
  14. #region Fields
  15. bool isOneWay;
  16. #endregion // Fields
  17. #region Properties
  18. public override bool IsOneWay {
  19. get { return isOneWay; }
  20. }
  21. [MonoTODO]
  22. public override LogicalMethodInfo MethodInfo {
  23. get { throw new NotImplementedException (); }
  24. }
  25. [MonoTODO]
  26. public override Exception OnewayInitException {
  27. get { throw new NotImplementedException (); }
  28. }
  29. #endregion // Properties
  30. #region Methods
  31. [MonoTODO]
  32. public override bool Initialize ()
  33. {
  34. throw new NotImplementedException ();
  35. }
  36. [MonoTODO]
  37. public override object[] ReadParameters ()
  38. {
  39. throw new NotImplementedException ();
  40. }
  41. [MonoTODO]
  42. public override bool WriteException (Exception e, Stream outputStream)
  43. {
  44. throw new NotImplementedException ();
  45. }
  46. [MonoTODO]
  47. public override void WriteReturns (object[] returnValues, Stream outputStream)
  48. {
  49. throw new NotImplementedException ();
  50. }
  51. #endregion
  52. }
  53. }