merge r67228-r67235, r67237, r67251 and r67256-67259 to trunk (they are
[mono.git] / mcs / class / System.Web / System.Web.Configuration_2.0 / ProfileGroupSettingsCollection.cs
1 //
2 // System.Web.Configuration.ProfileGroupSettingsCollection
3 //
4 // Authors:
5 //      Chris Toshok (toshok@ximian.com)
6 //
7 // (C) 2005 Novell, Inc (http://www.novell.com)
8 //
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
31 #if NET_2_0
32
33 using System;
34 using System.Configuration;
35
36 namespace System.Web.Configuration
37 {
38         public sealed class ProfileGroupSettingsCollection : ConfigurationElementCollection
39         {
40                 public void Add (ProfileGroupSettings group)
41                 {
42                         BaseAdd (group);
43                 }
44
45                 public void Clear ()
46                 {
47                         BaseClear ();
48                 }
49
50                 public override ConfigurationElementCollectionType CollectionType
51                 {
52                         get { return ConfigurationElementCollectionType.AddRemoveClearMap; }
53                 }
54
55                 protected override ConfigurationElement CreateNewElement ()
56                 {
57                         return new ProfileGroupSettings ();
58                 }
59
60                 public ProfileGroupSettings Get (int index)
61                 {
62                         return (ProfileGroupSettings) BaseGet (index);
63                 }
64
65                 public ProfileGroupSettings Get (string name)
66                 {
67                         return (ProfileGroupSettings) BaseGet (name);
68                 }
69
70                 protected override object GetElementKey (ConfigurationElement element)
71                 {
72                         return ((ProfileGroupSettings) element).Name;
73                 }
74
75                 public string GetKey (int index)
76                 {
77                         return (string)BaseGetKey (index);
78                 }
79
80                 public int IndexOf (ProfileGroupSettings group)
81                 {
82                         return BaseIndexOf (group);
83                 }
84
85                 public void Remove (string name)
86                 {
87                         BaseRemove (name);
88                 }
89
90                 public void RemoveAt (int index)
91                 {
92                         BaseRemoveAt (index);
93                 }
94
95                 public void Set (ProfileGroupSettings group)
96                 {
97                         ProfileGroupSettings existing = Get (group.Name);
98
99                         if (existing == null) {
100                                 Add (group);
101                         }
102                         else {
103                                 int index = BaseIndexOf (existing);
104                                 RemoveAt (index);
105                                 BaseAdd (index, group);
106                         }
107                 }
108
109                 public ProfileGroupSettings this[int index] {
110                         get { return Get (index); }
111                         set { if (BaseGet (index) != null) BaseRemoveAt (index); BaseAdd (index, value); }
112                 }
113
114                 public new ProfileGroupSettings this[string name] {
115                         get { return (ProfileGroupSettings) BaseGet (name); }
116                 }
117
118         }
119
120 }
121
122 #endif