Merge pull request #3300 from esdrubal/mono-sym-fixes
[mono.git] / mcs / class / System.ServiceModel / System.ServiceModel.Configuration / AllowedAudienceUriElement.cs
index 96bbc2834e61d49174afc40a28482dd4b2fb6f33..d9c108029492fbd59a7c1a8175cdcc06efc30050 100644 (file)
@@ -1,61 +1,61 @@
-//\r
-// AllowedAudienceUriElement.cs\r
-//\r
-// Author:\r
-//     Igor Zelmanovich <igorz@mainsoft.com>\r
-//\r
-// Copyright (C) 2008 Mainsoft, Inc.  http://www.mainsoft.com\r
-//\r
-// Permission is hereby granted, free of charge, to any person obtaining\r
-// a copy of this software and associated documentation files (the\r
-// "Software"), to deal in the Software without restriction, including\r
-// without limitation the rights to use, copy, modify, merge, publish,\r
-// distribute, sublicense, and/or sell copies of the Software, and to\r
-// permit persons to whom the Software is furnished to do so, subject to\r
-// the following conditions:\r
-// \r
-// The above copyright notice and this permission notice shall be\r
-// included in all copies or substantial portions of the Software.\r
-// \r
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,\r
-// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r
-// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r
-// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\r
-// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\r
-// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\r
-// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
-//\r
-\r
-using System;\r
-using System.Collections.Generic;\r
-using System.Text;\r
-using System.Configuration;\r
-\r
-namespace System.ServiceModel.Configuration\r
-{\r
-       public sealed class AllowedAudienceUriElement : ConfigurationElement\r
-       {\r
-               ConfigurationPropertyCollection _properties;\r
-\r
-               public AllowedAudienceUriElement () {\r
-               }\r
-\r
-               [StringValidator (MinLength = 1)]\r
-               [ConfigurationProperty ("allowedAudienceUri",\r
-                       Options = ConfigurationPropertyOptions.IsKey)]\r
-               public string AllowedAudienceUri {\r
-                       get { return (string) this ["allowedAudienceUri"]; }\r
-                       set { this ["allowedAudienceUri"] = value; }\r
-               }\r
-\r
-               protected override ConfigurationPropertyCollection Properties {\r
-                       get {\r
-                               if (_properties == null) {\r
-                                       _properties = new ConfigurationPropertyCollection ();\r
-                                       _properties.Add (new ConfigurationProperty ("allowedAudienceUri", typeof (string), null, null, new StringValidator (1), ConfigurationPropertyOptions.IsKey));\r
-                               }\r
-                               return _properties;\r
-                       }\r
-               }\r
-       }\r
+//
+// AllowedAudienceUriElement.cs
+//
+// Author:
+//     Igor Zelmanovich <igorz@mainsoft.com>
+//
+// Copyright (C) 2008 Mainsoft, Inc.  http://www.mainsoft.com
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+using System;
+using System.Collections.Generic;
+using System.Text;
+using System.Configuration;
+
+namespace System.ServiceModel.Configuration
+{
+       public sealed class AllowedAudienceUriElement : ConfigurationElement
+       {
+               ConfigurationPropertyCollection _properties;
+
+               public AllowedAudienceUriElement () {
+               }
+
+               [StringValidator (MinLength = 1)]
+               [ConfigurationProperty ("allowedAudienceUri",
+                       Options = ConfigurationPropertyOptions.IsKey)]
+               public string AllowedAudienceUri {
+                       get { return (string) this ["allowedAudienceUri"]; }
+                       set { this ["allowedAudienceUri"] = value; }
+               }
+
+               protected override ConfigurationPropertyCollection Properties {
+                       get {
+                               if (_properties == null) {
+                                       _properties = new ConfigurationPropertyCollection ();
+                                       _properties.Add (new ConfigurationProperty ("allowedAudienceUri", typeof (string), null, null, new StringValidator (1), ConfigurationPropertyOptions.IsKey));
+                               }
+                               return _properties;
+                       }
+               }
+       }
 }
\ No newline at end of file