996011ac826457d6c08f6e564042ecf0339fcff4
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Description / ServiceCollection.cs
1 // \r
2 // System.Web.Services.Description.ServiceCollection.cs\r
3 //\r
4 // Author:\r
5 //   Tim Coleman (tim@timcoleman.com)\r
6 //\r
7 // Copyright (C) Tim Coleman, 2002\r
8 //\r
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30 \r
31 using System.Web.Services;\r
32 \r
33 namespace System.Web.Services.Description {\r
34         public sealed class ServiceCollection : ServiceDescriptionBaseCollection {\r
35                 \r
36                 #region Constructors\r
37         \r
38                 internal ServiceCollection (ServiceDescription serviceDescription)\r
39                         : base (serviceDescription)\r
40                 {\r
41                 }\r
42 \r
43                 #endregion // Constructors\r
44 \r
45                 #region Properties\r
46 \r
47                 public Service this [int index] {\r
48                         get { \r
49                                 if (index < 0 || index > Count)\r
50                                         throw new ArgumentOutOfRangeException ();\r
51 \r
52                                 return (Service) List[index]; \r
53                         }\r
54                         set { List [index] = value; }\r
55                 }\r
56 \r
57                 public Service this [string name] {\r
58                         get { \r
59                                 int index = IndexOf ((Service) Table[name]);\r
60                                 if (index >= 0)\r
61                                         return this[index]; \r
62                                 return null;\r
63                         }\r
64                 }\r
65 \r
66                 #endregion // Properties\r
67 \r
68                 #region Methods\r
69 \r
70                 public int Add (Service service) \r
71                 {\r
72                         Insert (Count, service);\r
73                         return (Count - 1);\r
74                 }\r
75 \r
76                 public bool Contains (Service service)\r
77                 {\r
78                         return List.Contains (service);\r
79                 }\r
80 \r
81                 public void CopyTo (Service[] array, int index) \r
82                 {\r
83                         List.CopyTo (array, index);\r
84                 }\r
85 \r
86                 protected override string GetKey (object value) \r
87                 {\r
88                         if (!(value is Service))\r
89                                 throw new InvalidCastException ();\r
90 \r
91                         return ((Service) value).Name;\r
92                 }\r
93 \r
94                 public int IndexOf (Service service)\r
95                 {\r
96                         return List.IndexOf (service);\r
97                 }\r
98 \r
99                 public void Insert (int index, Service service)\r
100                 {\r
101                         List.Insert (index, service);\r
102                 }\r
103         \r
104                 public void Remove (Service service)\r
105                 {\r
106                         List.Remove (service);\r
107                 }\r
108                         \r
109                 protected override void SetParent (object value, object parent)\r
110                 {\r
111                         ((Service) value).SetParent ((ServiceDescription) parent);\r
112                 }\r
113                         \r
114                 #endregion // Methods\r
115         }\r
116 }\r