Merge pull request #1473 from esdrubal/sq
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Description / SoapOperationBinding.cs
index 9eecd8df09dba95b71578e6aa9d8333311a353bb..fff6bfa30ddf2266d0f9e22124b7b8f2cd7976cb 100644 (file)
@@ -1,11 +1,11 @@
-// \r
-// System.Web.Services.Description.SoapOperationBinding.cs\r
-//\r
-// Author:\r
-//   Tim Coleman (tim@timcoleman.com)\r
-//\r
-// Copyright (C) Tim Coleman, 2002\r
-//\r
+// 
+// System.Web.Services.Description.SoapOperationBinding.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.ComponentModel;\r
-using System.Web.Services.Configuration;\r
-using System.Xml.Serialization;\r
-\r
-namespace System.Web.Services.Description {\r
-       [XmlFormatExtension ("operation", "http://schemas.xmlsoap.org/wsdl/soap/", typeof (OperationBinding))]\r
-       public class SoapOperationBinding : ServiceDescriptionFormatExtension {\r
-\r
-               #region Fields\r
-\r
-               string soapAction;\r
-               SoapBindingStyle style;\r
-\r
-               #endregion // Fields\r
-\r
-               #region Constructors\r
-       \r
-               public SoapOperationBinding ()\r
-               {\r
-                       soapAction = String.Empty;\r
-                       style = SoapBindingStyle.Default;\r
-               }\r
-               \r
-               #endregion // Constructors\r
-\r
-               #region Properties\r
-\r
-               [XmlAttribute ("soapAction")]\r
-               public string SoapAction {\r
-                       get { return soapAction; }\r
-                       set { soapAction = value; }\r
-               }\r
-\r
-               // LAMESPEC: .NET Documentation says that the default value for this property is\r
-               // SoapBindingStyle.Document (see constructor), but reflection shows that this \r
-               // attribute value is SoapBindingStyle.Default\r
-\r
-               [DefaultValue (SoapBindingStyle.Default)]\r
-               [XmlAttribute ("style")]\r
-               public SoapBindingStyle Style {\r
-                       get { return style; }\r
-                       set { style = value; }\r
-               }\r
-\r
-               #endregion // Properties\r
-       }\r
-}\r
+
+using System.ComponentModel;
+using System.Web.Services.Configuration;
+using System.Xml.Serialization;
+
+namespace System.Web.Services.Description {
+       [XmlFormatExtension ("operation", "http://schemas.xmlsoap.org/wsdl/soap/", typeof (OperationBinding))]
+       public class SoapOperationBinding : ServiceDescriptionFormatExtension {
+
+               #region Fields
+
+               string soapAction;
+               SoapBindingStyle style;
+
+               #endregion // Fields
+
+               #region Constructors
+       
+               public SoapOperationBinding ()
+               {
+                       soapAction = String.Empty;
+                       style = SoapBindingStyle.Default;
+               }
+               
+               #endregion // Constructors
+
+               #region Properties
+
+               [XmlAttribute ("soapAction")]
+               public string SoapAction {
+                       get { return soapAction; }
+                       set { soapAction = value; }
+               }
+
+               // LAMESPEC: .NET Documentation says that the default value for this property is
+               // SoapBindingStyle.Document (see constructor), but reflection shows that this 
+               // attribute value is SoapBindingStyle.Default
+
+               [DefaultValue (SoapBindingStyle.Default)]
+               [XmlAttribute ("style")]
+               public SoapBindingStyle Style {
+                       get { return style; }
+                       set { style = value; }
+               }
+
+               #endregion // Properties
+       }
+}