[corlib] Improve CancellationTokenSource test
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Description / Binding.cs
index ed48f47fbdab4081032123e181ddee8121071663..19798a06af15b28a0fd10e6553bafe4a79bea744 100644 (file)
@@ -1,11 +1,11 @@
-// \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
+// 
+// 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
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
-\r
-using System.Web.Services.Configuration;\r
-using System.Xml;\r
-using System.Xml.Serialization;\r
-\r
-namespace System.Web.Services.Description \r
-{\r
-       [XmlFormatExtensionPoint ("Extensions")]\r
-       public sealed class Binding :\r
-#if NET_2_0\r
-               NamedItem\r
-#else\r
-               DocumentableItem \r
-#endif\r
-       {\r
-\r
-               #region Fields\r
-\r
-               ServiceDescriptionFormatExtensionCollection extensions;\r
-#if !NET_2_0\r
-               string name;\r
-#endif\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
-#if !NET_2_0\r
-                       name = String.Empty;\r
-#endif\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
+
+using System.Web.Services.Configuration;
+using System.Xml;
+using System.Xml.Serialization;
+
+namespace System.Web.Services.Description 
+{
+       [XmlFormatExtensionPoint ("Extensions")]
+       public sealed class Binding :
+               NamedItem
+       {
+
+               #region Fields
+
+               ServiceDescriptionFormatExtensionCollection extensions;
+               OperationBindingCollection operations;
+               ServiceDescription serviceDescription;
+               XmlQualifiedName type;
+
+               #endregion // Fields
+
+               #region Constructors
+
+               public Binding ()
+               {
+                       extensions = new ServiceDescriptionFormatExtensionCollection (this);
+                       operations = new OperationBindingCollection (this);
+                       serviceDescription = null;
+                       type = XmlQualifiedName.Empty;
+               }
+               
+               #endregion // Constructors
+
+               #region Properties
+
+               [XmlIgnore]
                public 
-#if NET_2_0
                override
-#endif
-               ServiceDescriptionFormatExtensionCollection Extensions {        \r
-                       get { return extensions; }\r
-               }\r
-\r
-#if !NET_2_0\r
-               [XmlAttribute ("name", DataType = "NCName")]    \r
-               public string Name {\r
-                       get { return name; }\r
-                       set { name = value; }\r
-               }\r
-#endif\r
-\r
-               [XmlElement ("operation")]\r
-               public OperationBindingCollection Operations {\r
-                       get { return operations; }\r
-               }\r
-\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
+               ServiceDescriptionFormatExtensionCollection Extensions {        
+                       get { return extensions; }
+               }
+
+
+               [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
+       }
+}