2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / class / System.Runtime.Serialization / System.Runtime.Serialization.Configuration / DeclaredTypeElementCollection.cs
blobc5d35273d03f65e93b155ab8e070299fc69d6706
1 //
2 // DeclaredTypeElementCollection.cs
3 //
4 // Author:
5 // Atsushi Enomoto <atsushi@ximian.com>
6 //
7 // Copyright (C) 2005 Novell, Inc. http://www.novell.com
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 //
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 //
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 #if NET_2_0
29 using System;
30 using System.Configuration;
32 namespace System.Runtime.Serialization.Configuration
34 [ConfigurationCollection (typeof (DeclaredTypeElement))]
35 public sealed class DeclaredTypeElementCollection : ConfigurationElementCollection
37 public DeclaredTypeElementCollection ()
41 public DeclaredTypeElement this [int index] {
42 get { return (DeclaredTypeElement) BaseGet (index); }
43 set {
44 RemoveAt (index);
45 Add (value);
49 public new DeclaredTypeElement this [string typeName] {
50 get { return (DeclaredTypeElement) BaseGet (typeName); }
51 set {
52 Remove (typeName);
53 Add (value);
57 public void Add (DeclaredTypeElement element)
59 BaseAdd (element);
62 public void Clear ()
64 BaseClear ();
67 public bool Contains (string typeName)
69 return BaseGet (typeName) != null;
72 public int IndexOf (DeclaredTypeElement element)
74 return BaseIndexOf (element);
77 public void Remove (DeclaredTypeElement element)
79 Remove ((string) GetElementKey (element));
82 public void Remove (string typeName)
84 BaseRemove (typeName);
87 public void RemoveAt (int index)
89 BaseRemoveAt (index);
92 protected override ConfigurationElement CreateNewElement ()
94 return new DeclaredTypeElement ();
97 protected override Object GetElementKey (
98 ConfigurationElement element)
100 return ((DeclaredTypeElement) element).Type;
104 #endif