Merge pull request #1155 from steffen-kiess/json-string
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Description / OperationInput.cs
index 7d6071cb92442725cd335ad2ac27cc9f329a37a1..583897a32d8ec616b027c87255015c45aaf8f99d 100644 (file)
@@ -1,12 +1,12 @@
-// \r
-// System.Web.Services.Description.OperationInput.cs\r
-//\r
-// Author:\r
-//   Tim Coleman (tim@timcoleman.com)\r
+// 
+// System.Web.Services.Description.OperationInput.cs
+//
+// Author:
+//   Tim Coleman (tim@timcoleman.com)
 //   Ankit Jain (jankit@novell.com)
-//\r
-// Copyright (C) Tim Coleman, 2002\r
-//\r
+//
+// 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;\r
-using System.Web.Services.Configuration;\r
+
+using System.Web.Services;
+using System.Web.Services.Configuration;
 using System.Xml.Serialization;
-\r
-namespace System.Web.Services.Description {\r
-#if NET_2_0\r
-       [XmlFormatExtensionPoint ("Extensions")]\r
-#endif\r
-       public sealed class OperationInput : OperationMessage {\r
+
+namespace System.Web.Services.Description {
+       [XmlFormatExtensionPoint ("Extensions")]
+       public sealed class OperationInput : OperationMessage {
                
-#if NET_2_0
-               ServiceDescriptionFormatExtensionCollection extensions;\r
-#endif
+               ServiceDescriptionFormatExtensionCollection extensions;
 
                public OperationInput ()
                {
-#if NET_2_0
-                       extensions = new ServiceDescriptionFormatExtensionCollection (this);\r
-#endif
+                       extensions = new ServiceDescriptionFormatExtensionCollection (this);
                }
                
-#if NET_2_0
                [XmlIgnore]
                public override ServiceDescriptionFormatExtensionCollection Extensions {
-                       get { return extensions; }\r
-               }\r
-#endif
+                       get { return extensions; }
+               }
 
-       }\r
-}\r
+       }
+}