merge -r 60814:60815
[mono.git] / mcs / class / System.Web / System.Web.Configuration_2.0 / AssemblyCollection.cs
1 //
2 // System.Web.Configuration.AssemblyCollection
3 //
4 // Authors:
5 //      Lluis Sanchez Gual (lluis@novell.com)
6 //      Chris Toshok (toshok@ximian.com)
7 //
8 // (C) 2004,2005 Novell, Inc (http://www.novell.com)
9 //
10
11 //
12 // Permission is hereby granted, free of charge, to any person obtaining
13 // a copy of this software and associated documentation files (the
14 // "Software"), to deal in the Software without restriction, including
15 // without limitation the rights to use, copy, modify, merge, publish,
16 // distribute, sublicense, and/or sell copies of the Software, and to
17 // permit persons to whom the Software is furnished to do so, subject to
18 // the following conditions:
19 // 
20 // The above copyright notice and this permission notice shall be
21 // included in all copies or substantial portions of the Software.
22 // 
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 //
31
32 #if NET_2_0
33
34 using System;
35 using System.Configuration;
36
37 namespace System.Web.Configuration
38 {
39         [ConfigurationCollection (typeof (AssemblyInfo), CollectionType = ConfigurationElementCollectionType.AddRemoveClearMap)]
40         public sealed class AssemblyCollection: ConfigurationElementCollection
41         {
42                 static ConfigurationPropertyCollection properties;
43
44                 static AssemblyCollection ()
45                 {
46                         properties = new ConfigurationPropertyCollection();
47                 }
48
49                 public void Add (AssemblyInfo info)
50                 {
51                         BaseAdd (info, false);
52                 }
53                 
54                 public void Clear ()
55                 {
56                         BaseClear ();
57                 }
58                 
59                 protected override ConfigurationElement CreateNewElement ()
60                 {
61                         return new AssemblyInfo ();
62                 }
63                 
64                 protected override object GetElementKey (ConfigurationElement element)
65                 {
66                         return ((AssemblyInfo)element).Assembly;
67                 }
68                 
69                 public void Remove (string key)
70                 {
71                         BaseRemove (key);
72                 }
73                 
74                 public void RemoveAt (int index)
75                 {
76                         BaseRemoveAt (index);
77                 }
78
79                 public AssemblyInfo this [int index] {
80                         get { return (AssemblyInfo) BaseGet (index); }
81                         set {  if (BaseGet(index) != null)  BaseRemoveAt(index);  BaseAdd(index, value); }
82                 }
83
84                 public new AssemblyInfo this [string assemblyName] {
85                         get { return (AssemblyInfo) BaseGet (assemblyName); }
86                 }
87
88
89                 protected override ConfigurationPropertyCollection Properties {
90                         get { return properties; }
91                 }
92         }
93 }
94
95 #endif