SoapMessage.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. //
  2. // System.Runtime.Serialization.Formatters.SoapMessage.cs
  3. //
  4. // Author: Duncan Mak ([email protected])
  5. //
  6. // 2002 (C) Copyright, Ximian, Inc.
  7. //
  8. using System;
  9. using System.Runtime.Remoting.Messaging;
  10. using System.Runtime.Serialization.Formatters;
  11. namespace System.Runtime.Serialization.Formatters {
  12. [Serializable]
  13. public class SoapMessage : ISoapMessage
  14. {
  15. [MonoTODO]
  16. public SoapMessage ()
  17. {
  18. throw new NotImplementedException ();
  19. }
  20. public Header[] Headers {
  21. get { throw new NotImplementedException (); }
  22. set { throw new NotImplementedException (); }
  23. }
  24. [MonoTODO]
  25. public string MethodName {
  26. get { throw new NotImplementedException (); }
  27. set { throw new NotImplementedException (); }
  28. }
  29. [MonoTODO]
  30. public string [] ParamNames {
  31. get { throw new NotImplementedException (); }
  32. set { throw new NotImplementedException (); }
  33. }
  34. [MonoTODO]
  35. public Type [] ParamTypes {
  36. get { throw new NotImplementedException (); }
  37. set { throw new NotImplementedException (); }
  38. }
  39. [MonoTODO]
  40. public object [] ParamValues {
  41. get { throw new NotImplementedException (); }
  42. set { throw new NotImplementedException (); }
  43. }
  44. [MonoTODO]
  45. public string XmlNameSpace {
  46. get { throw new NotImplementedException (); }
  47. set { throw new NotImplementedException (); }
  48. }
  49. }
  50. }