2 // System.Web.Configuration.ProfilePropertySettingsCollection
5 // Chris Toshok (toshok@ximian.com)
7 // (C) 2005 Novell, Inc (http://www.novell.com)
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:
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
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.
33 using System
.Configuration
;
36 namespace System
.Web
.Configuration
38 [ConfigurationCollection (typeof (ProfilePropertySettings
), CollectionType
= ConfigurationElementCollectionType
.AddRemoveClearMap
)]
39 public class ProfilePropertySettingsCollection
: ConfigurationElementCollection
41 static ConfigurationPropertyCollection properties
;
43 static ProfilePropertySettingsCollection ()
45 properties
= new ConfigurationPropertyCollection ();
48 public void Add (ProfilePropertySettings propertySettings
)
50 BaseAdd (propertySettings
);
58 protected override ConfigurationElement
CreateNewElement ()
60 return new ProfilePropertySettings ();
63 public ProfilePropertySettings
Get (int index
)
65 return (ProfilePropertySettings
) BaseGet (index
);
68 public ProfilePropertySettings
Get (string name
)
70 return (ProfilePropertySettings
) BaseGet (name
);
73 protected override object GetElementKey (ConfigurationElement element
)
75 return ((ProfilePropertySettings
)element
).Name
;
78 protected override bool OnDeserializeUnrecognizedElement (string elementName
, XmlReader reader
)
80 /* Disabled: pending investigation
82 if (elementName == "clear" || elementName == "group") {
83 throw new ConfigurationErrorsException (String.Format ("{0} is not permitted here", elementName), reader);
87 return base.OnDeserializeUnrecognizedElement (elementName
, reader
);
90 public string GetKey (int index
)
92 ProfilePropertySettings s
= Get (index
);
99 public int IndexOf (ProfilePropertySettings propertySettings
)
101 return BaseIndexOf (propertySettings
);
104 public void Remove (string name
)
109 public void RemoveAt (int index
)
111 BaseRemoveAt (index
);
114 public void Set (ProfilePropertySettings propertySettings
)
116 ProfilePropertySettings existing
= Get (propertySettings
.Name
);
118 if (existing
== null) {
119 Add (propertySettings
);
122 int index
= BaseIndexOf (existing
);
124 BaseAdd (index
, propertySettings
);
128 public string[ ] AllKeys
{
130 string[] keys
= new string[Count
];
131 for (int i
= 0; i
< Count
; i
++)
132 keys
[i
] = this[i
].Name
;
137 protected virtual bool AllowClear
{
143 public ProfilePropertySettings
this[int index
] {
144 get { return Get (index); }
145 set { if (Get (index) != null) BaseRemoveAt (index); BaseAdd (index, value); }
148 public new ProfilePropertySettings
this [string name
] {
149 get { return (ProfilePropertySettings) base.BaseGet (name); }
152 protected override bool ThrowOnDuplicate
{
158 protected internal override ConfigurationPropertyCollection Properties
{
159 get { return properties; }