merge -r 61110:61111
[mono.git] / mcs / class / System.Web / System.Web.Configuration_2.0 / ProfilePropertySettingsCollection.cs
1 //
2 // System.Web.Configuration.ProfilePropertySettingsCollection
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 using System.Xml;
36
37 namespace System.Web.Configuration
38 {
39         [ConfigurationCollection (typeof (ProfilePropertySettings), CollectionType = ConfigurationElementCollectionType.AddRemoveClearMap)]
40         public class ProfilePropertySettingsCollection : ConfigurationElementCollection
41         {
42                 static ConfigurationPropertyCollection properties;
43
44                 static ProfilePropertySettingsCollection ()
45                 {
46                         properties = new ConfigurationPropertyCollection ();
47                 }
48
49                 public ProfilePropertySettingsCollection ()
50                 {
51                 }
52
53                 public void Add (ProfilePropertySettings propertySettings)
54                 {
55                         BaseAdd (propertySettings);
56                 }
57
58                 public void Clear ()
59                 {
60                         BaseClear ();
61                 }
62
63                 protected override ConfigurationElement CreateNewElement ()
64                 {
65                         return new ProfilePropertySettings ();
66                 }
67
68                 public ProfilePropertySettings Get (int index)
69                 {
70                         return (ProfilePropertySettings) BaseGet (index);
71                 }
72
73                 public ProfilePropertySettings Get (string name)
74                 {
75                         return (ProfilePropertySettings) BaseGet (name);
76                 }
77
78                 protected override object GetElementKey (ConfigurationElement element)
79                 {
80                         return ((ProfilePropertySettings)element).Name;
81                 }
82
83                 public string GetKey (int index)
84                 {
85                         ProfilePropertySettings s = Get (index);
86                         if (s == null)
87                                 return null;
88
89                         return s.Name;
90                 }
91
92                 public int IndexOf (ProfilePropertySettings propertySettings)
93                 {
94                         return BaseIndexOf (propertySettings);
95                 }
96
97                 [MonoTODO]
98                 protected override bool OnDeserializeUnrecognizedElement (string elementName, XmlReader reader)
99                 {
100                         throw new NotImplementedException ();
101                 }
102
103                 public void Remove (string name)
104                 {
105                         BaseRemove (name);
106                 }
107
108                 public void RemoveAt (int index)
109                 {
110                         BaseRemoveAt (index);
111                 }
112
113                 public void Set (ProfilePropertySettings propertySettings)
114                 {
115                         ProfilePropertySettings existing = Get (propertySettings.Name);
116
117                         if (existing == null) {
118                                 Add (propertySettings);
119                         }
120                         else {
121                                 int index = BaseIndexOf (existing);
122                                 RemoveAt (index);
123                                 BaseAdd (index, propertySettings);
124                         }
125                 }
126
127                 public string[ ] AllKeys {
128                         get {
129                                 string[] keys = new string[Count];
130                                 for (int i = 0; i < Count; i ++)
131                                         keys[i] = this[i].Name;
132                                 return keys;
133                         }
134                 }
135
136                 [MonoTODO]
137                 protected virtual bool AllowClear {
138                         get {
139                                 throw new NotImplementedException ();
140                         }
141                 }
142
143                 protected override ConfigurationPropertyCollection Properties {
144                         get { return properties; }
145                 }
146
147                 public ProfilePropertySettings this[int index] {
148                         get { return Get (index); }
149                         set { if (Get (index) != null) BaseRemoveAt (index); BaseAdd (index, value); }
150                 }
151
152                 public new ProfilePropertySettings this[string name] {
153                         get { return Get (name); }                              
154                 }
155
156                 protected override bool ThrowOnDuplicate {
157                         get { return false; }
158                 }
159
160         }
161 }
162
163 #endif