[corlib] More thread code from reference sources, mostly for argument checks
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Configuration / XmlFormatExtensionPrefixAttribute.cs
index 00007929c3cb1c0b0e0dc964eb6e37ef0987a974..4fb5f988da21270e9d13aba0df3c368a7029d052 100644 (file)
@@ -1,11 +1,11 @@
- // \r
-// System.Web.Services.Configuration.XmlFormatExtensionPrefixAttribute.cs\r
-//\r
-// Author:\r
-//   Tim Coleman (tim@timcoleman.com)\r
-//\r
-// Copyright (C) Tim Coleman, 2002\r
-//\r
+ // 
+// System.Web.Services.Configuration.XmlFormatExtensionPrefixAttribute.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
-namespace System.Web.Services.Configuration {\r
-       [AttributeUsage (AttributeTargets.Class, AllowMultiple = true, Inherited = true)]\r
-       public sealed class XmlFormatExtensionPrefixAttribute : Attribute {\r
-\r
-               #region Fields\r
-\r
-               string prefix;\r
-               string ns;\r
-\r
-               #endregion // Fields\r
-\r
-               #region Constructors\r
-\r
-               public XmlFormatExtensionPrefixAttribute ()\r
-               {\r
-               }\r
-\r
-               public XmlFormatExtensionPrefixAttribute (string prefix, string ns)\r
-                       : this ()\r
-               {\r
-                       this.prefix = prefix;\r
-                       this.ns = ns;\r
-               }\r
-\r
-               #endregion // Constructors\r
-\r
-               #region Properties\r
-\r
-               public string Prefix {\r
-                       get { return prefix; }\r
-                       set { prefix = value; }\r
-               }\r
-\r
-               public string Namespace {\r
-                       get { return ns; }\r
-                       set { ns = value; }\r
-               }\r
-\r
-               #endregion // Properties\r
-       }\r
-}\r
+
+namespace System.Web.Services.Configuration {
+       [AttributeUsage (AttributeTargets.Class, AllowMultiple = true, Inherited = true)]
+       public sealed class XmlFormatExtensionPrefixAttribute : Attribute {
+
+               #region Fields
+
+               string prefix;
+               string ns;
+
+               #endregion // Fields
+
+               #region Constructors
+
+               public XmlFormatExtensionPrefixAttribute ()
+               {
+               }
+
+               public XmlFormatExtensionPrefixAttribute (string prefix, string ns)
+                       : this ()
+               {
+                       this.prefix = prefix;
+                       this.ns = ns;
+               }
+
+               #endregion // Constructors
+
+               #region Properties
+
+               public string Prefix {
+                       get { return prefix; }
+                       set { prefix = value; }
+               }
+
+               public string Namespace {
+                       get { return ns; }
+                       set { ns = value; }
+               }
+
+               #endregion // Properties
+       }
+}