| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- //
- // System.Web.Services.Discovery.SoapBinding.cs
- //
- // Author:
- // Dave Bettin ([email protected])
- //
- // Copyright (C) Dave Bettin, 2002
- //
- using System.Xml;
- using System.Xml.Serialization;
- namespace System.Web.Services.Discovery {
- [XmlRootAttribute("soap", Namespace="http://schemas/xmlsoap.org/disco/schema/soap/", IsNullable=true)]
- public sealed class SoapBinding {
- #region Fields
-
- public const string Namespace = "http://schemas/xmlsoap.org/disco/schema/soap/";
- private string address;
- private XmlQualifiedName binding;
-
- #endregion // Fields
-
- #region Constructors
- public SoapBinding ()
- {
- }
-
- #endregion // Constructors
- #region Properties
-
- [XmlAttribute("address")]
- public string Address {
- get { return address; }
- set { address = value; }
- }
-
- [XmlAttribute("binding")]
- public XmlQualifiedName Binding {
- get { return binding; }
- set { binding = value; }
- }
-
- #endregion // Properties
- }
- }
|