| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- //
- // System.Web.Services.Description.HttpBinding.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- using System.Web.Services.Configuration;
- using System.Xml.Serialization;
- namespace System.Web.Services.Description {
- [XmlFormatExtension ("binding", "http://schemas.xmlsoap.org/wsdl/http/", typeof (Binding))]
- [XmlFormatExtensionPrefix ("http", "http://schemas.xmlsoap.org/wsld/http/")]
- public sealed class HttpBinding : ServiceDescriptionFormatExtension {
- #region Fields
- public const string Namespace = "http://schemas.xmlsoap.org/wsdl/http/";
- string verb;
- #endregion // Fields
- #region Constructors
-
- public HttpBinding ()
- {
- verb = String.Empty;
- }
-
- #endregion // Constructors
- #region Properties
- [XmlAttribute ("verb", DataType = "NMTOKEN")]
- public string Verb {
- get { return verb; }
- set { verb = value; }
- }
-
- #endregion // Properties
- }
- }
|