SoapBinding.cs 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. //
  2. // System.Web.Services.Discovery.SoapBinding.cs
  3. //
  4. // Author:
  5. // Dave Bettin ([email protected])
  6. //
  7. // Copyright (C) Dave Bettin, 2002
  8. //
  9. using System.Xml;
  10. using System.Xml.Serialization;
  11. namespace System.Web.Services.Discovery {
  12. [XmlRootAttribute("soap", Namespace="http://schemas/xmlsoap.org/disco/schema/soap/", IsNullable=true)]
  13. public sealed class SoapBinding {
  14. #region Fields
  15. public const string Namespace = "http://schemas/xmlsoap.org/disco/schema/soap/";
  16. private string address;
  17. private XmlQualifiedName binding;
  18. #endregion // Fields
  19. #region Constructors
  20. [MonoTODO]
  21. public SoapBinding ()
  22. {
  23. throw new NotImplementedException ();
  24. }
  25. #endregion // Constructors
  26. #region Properties
  27. [XmlAttribute("address")]
  28. public string Address {
  29. get { return address; }
  30. set { address = value; }
  31. }
  32. [XmlAttribute("binding")]
  33. public XmlQualifiedName Binding {
  34. get { return binding; }
  35. set { binding = value; }
  36. }
  37. #endregion // Properties
  38. }
  39. }