* Mono.Posix.dll.sources: Rename Mono.Posix to Mono.Unix.
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Description / BindingCollection.cs
index 62462298b5fb1fe02aca700902b842d0c681d8dc..147a4b5e4d8fbd5afefbeb2d0d2078dd1036377c 100644 (file)
@@ -6,8 +6,27 @@
 //\r
 // Copyright (C) Tim Coleman, 2002\r
 //\r
-\r
-using System.Web.Services;\r
+
+//
+// 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.
+//
 \r
 namespace System.Web.Services.Description {\r
        public sealed class BindingCollection : ServiceDescriptionBaseCollection {\r
@@ -21,8 +40,8 @@ namespace System.Web.Services.Description {
                #region Constructors\r
        \r
                internal BindingCollection (ServiceDescription serviceDescription) \r
+                       : base (serviceDescription)\r
                {\r
-                       this.serviceDescription = serviceDescription;\r
                }\r
 \r
                #endregion // Constructors\r
@@ -35,10 +54,11 @@ namespace System.Web.Services.Description {
                                        throw new ArgumentOutOfRangeException ();\r
                                return (Binding) List[index]; \r
                        }\r
+                        set { List [index] = value; }\r
                }\r
 \r
                public Binding this [string name] {\r
-                       get { return this[IndexOf ((Binding) Table[name])]; }\r
+                       get { return (Binding) Table[name]; }\r
                }\r
 \r
                #endregion // Properties\r
@@ -75,14 +95,11 @@ namespace System.Web.Services.Description {
 \r
                public void Insert (int index, Binding binding)\r
                {\r
-                       SetParent (binding, serviceDescription);\r
-                       Table [GetKey (binding)] = binding;\r
                        List.Insert (index, binding);\r
                }\r
        \r
                public void Remove (Binding binding)\r
                {\r
-                       Table.Remove (GetKey (binding));\r
                        List.Remove (binding);\r
                }\r
                        \r