2006-12-12 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Description / Binding.cs
index 12cdf0cfbbb8fbfc0a121da6175f44b456459097..2662bc6edbb03e0f70be9fe50c72f9fe7d552ff2 100644 (file)
-// \r
-// System.Web.Services.Description.Binding.cs\r
-//\r
-// Author:\r
-//   Tim Coleman (tim@timcoleman.com)\r
-//\r
-// Copyright (C) Tim Coleman, 2002\r
-//\r
-\r
-using System.Web.Services.Configuration;\r
-using System.Xml;\r
-using System.Xml.Serialization;\r
-\r
-namespace System.Web.Services.Description {\r
-       [XmlFormatExtensionPoint ("Extensions")]\r
-       public sealed class Binding : DocumentableItem {\r
-\r
-               #region Fields\r
-\r
-               ServiceDescriptionFormatExtensionCollection extensions;\r
-               string name;\r
-               OperationBindingCollection operations;\r
-               ServiceDescription serviceDescription;\r
-               XmlQualifiedName type;\r
-\r
-               #endregion // Fields\r
-\r
-               #region Constructors\r
-\r
-               public Binding ()\r
-               {\r
-                       extensions = new ServiceDescriptionFormatExtensionCollection (this);\r
-                       name = String.Empty;\r
-                       operations = new OperationBindingCollection (this);\r
-                       serviceDescription = null;\r
-                       type = XmlQualifiedName.Empty;\r
-               }\r
-               \r
-               #endregion // Constructors\r
-\r
-               #region Properties\r
-\r
-               [XmlIgnore]\r
-               public ServiceDescriptionFormatExtensionCollection Extensions {         \r
-                       get { return extensions; }\r
-               }\r
-\r
-               [XmlAttribute ("name", DataType = "NCName")]    \r
-               public string Name {\r
-                       get { return name; }\r
-                       set { name = value; }\r
-               }\r
-\r
-               [XmlElement ("operation")]\r
-               public OperationBindingCollection Operations {\r
-                       get { return operations; }\r
-               }\r
-\r
-               [XmlIgnore]\r
-               public ServiceDescription ServiceDescription {\r
-                       get { return serviceDescription; }\r
-               }\r
-\r
-               [XmlAttribute ("type")] \r
-               public XmlQualifiedName Type {\r
-                       get { return type; }\r
-                       set { type = value; }\r
-               }\r
-\r
-               #endregion // Properties\r
-\r
-               #region Methods\r
-\r
-               internal void SetParent (ServiceDescription serviceDescription)\r
-               {\r
-                       this.serviceDescription = serviceDescription;\r
-               }\r
-\r
-               #endregion // Methods\r
-       }\r
-}\r
+// 
+// System.Web.Services.Description.Binding.cs
+//
+// Author:
+//   Tim Coleman (tim@timcoleman.com)
+//
+// Copyright (C) Tim Coleman, 2002
+//
+
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+using System.Web.Services.Configuration;
+using System.Xml;
+using System.Xml.Serialization;
+
+namespace System.Web.Services.Description 
+{
+       [XmlFormatExtensionPoint ("Extensions")]
+       public sealed class Binding :
+#if NET_2_0
+               NamedItem
+#else
+               DocumentableItem 
+#endif
+       {
+
+               #region Fields
+
+               ServiceDescriptionFormatExtensionCollection extensions;
+#if !NET_2_0
+               string name;
+#endif
+               OperationBindingCollection operations;
+               ServiceDescription serviceDescription;
+               XmlQualifiedName type;
+
+               #endregion // Fields
+
+               #region Constructors
+
+               public Binding ()
+               {
+                       extensions = new ServiceDescriptionFormatExtensionCollection (this);
+#if !NET_2_0
+                       name = String.Empty;
+#endif
+                       operations = new OperationBindingCollection (this);
+                       serviceDescription = null;
+                       type = XmlQualifiedName.Empty;
+               }
+               
+               #endregion // Constructors
+
+               #region Properties
+
+               [XmlIgnore]
+               public 
+#if NET_2_0
+               override
+#endif
+               ServiceDescriptionFormatExtensionCollection Extensions {        
+                       get { return extensions; }
+               }
+
+#if !NET_2_0
+               [XmlAttribute ("name", DataType = "NCName")]    
+               public string Name {
+                       get { return name; }
+                       set { name = value; }
+               }
+#endif
+
+               [XmlElement ("operation")]
+               public OperationBindingCollection Operations {
+                       get { return operations; }
+               }
+
+               public ServiceDescription ServiceDescription {
+                       get { return serviceDescription; }
+               }
+
+               [XmlAttribute ("type")] 
+               public XmlQualifiedName Type {
+                       get { return type; }
+                       set { type = value; }
+               }
+
+               #endregion // Properties
+
+               #region Methods
+
+               internal void SetParent (ServiceDescription serviceDescription)
+               {
+                       this.serviceDescription = serviceDescription;
+               }
+
+               #endregion // Methods
+       }
+}