Merge pull request #1325 from madrang/CryptoToolsCtorCheck
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Description / HttpAddressBinding.cs
index bf120fb04c01d73b010c8b4ecab79a138aa3c24e..3c7d65257936ecd1c495bb6c680c740c3cbe6b29 100644 (file)
@@ -1,11 +1,11 @@
-// \r
-// System.Web.Services.Description.HttpAddressBinding.cs\r
-//\r
-// Author:\r
-//   Tim Coleman (tim@timcoleman.com)\r
-//\r
-// Copyright (C) Tim Coleman, 2002\r
-//\r
+// 
+// System.Web.Services.Description.HttpAddressBinding.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.Serialization; \r
-\r
-namespace System.Web.Services.Description {\r
-       [XmlFormatExtension ("address", "http://schemas.xmlsoap.org/wsdl/http/", typeof (Port))]\r
-       public sealed class HttpAddressBinding : ServiceDescriptionFormatExtension {\r
-\r
-               #region Fields\r
-\r
-               string location;\r
-\r
-               #endregion // Fields\r
-\r
-               #region Constructors\r
-               \r
-               public HttpAddressBinding ()\r
-               {\r
-                       location = String.Empty;\r
-               }\r
-               \r
-               #endregion // Constructors\r
-\r
-               #region Properties\r
-\r
-               [XmlAttribute ("location")]\r
-               public string Location {        \r
-                       get { return location; }\r
-                       set { location = value; }\r
-               }\r
-       \r
-               #endregion // Properties\r
-       }\r
-}\r
+
+using System.Web.Services.Configuration;
+using System.Xml.Serialization; 
+
+namespace System.Web.Services.Description {
+       [XmlFormatExtension ("address", "http://schemas.xmlsoap.org/wsdl/http/", typeof (Port))]
+       public sealed class HttpAddressBinding : ServiceDescriptionFormatExtension {
+
+               #region Fields
+
+               string location;
+
+               #endregion // Fields
+
+               #region Constructors
+               
+               public HttpAddressBinding ()
+               {
+                       location = String.Empty;
+               }
+               
+               #endregion // Constructors
+
+               #region Properties
+
+               [XmlAttribute ("location")]
+               public string Location {        
+                       get { return location; }
+                       set { location = value; }
+               }
+       
+               #endregion // Properties
+       }
+}