SoapClientMessage.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. //
  2. // System.Web.Services.Protocols.SoapClientMessage.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. using System.Web.Services;
  10. namespace System.Web.Services.Protocols {
  11. public sealed class SoapClientMessage : SoapMessage {
  12. #region Properties
  13. public override string Action {
  14. [MonoTODO]
  15. get { throw new NotImplementedException (); }
  16. }
  17. public SoapHttpClientProtocol Client {
  18. [MonoTODO]
  19. get { throw new NotImplementedException (); }
  20. }
  21. public override LogicalMethodInfo MethodInfo {
  22. [MonoTODO]
  23. get { throw new NotImplementedException (); }
  24. }
  25. public override bool OneWay {
  26. [MonoTODO]
  27. get { throw new NotImplementedException (); }
  28. }
  29. public override string Url {
  30. [MonoTODO]
  31. get { throw new NotImplementedException (); }
  32. }
  33. #endregion // Properties
  34. #region Methods
  35. [MonoTODO]
  36. protected override void EnsureInStage ()
  37. {
  38. throw new NotImplementedException ();
  39. }
  40. [MonoTODO]
  41. protected override void EnsureOutStage ()
  42. {
  43. throw new NotImplementedException ();
  44. }
  45. #endregion // Methods
  46. }
  47. }