2010-04-15 Jb Evain <jbevain@novell.com>
[mcs.git] / class / System.Management / System.Management / ManagementNamedValueCollection.cs
blob172cf497129cae52f467e11c590819bbee6ff36a
1 //
2 // System.Management.ManagementNamedValueCollection
3 //
4 // Authors:
5 // Gonzalo Paniagua Javier (gonzalo@ximian.com)
6 //
7 // (C) 2003 Ximian, Inc (http://www.ximian.com)
8 //
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.
31 using System;
32 using System.Collections.Specialized;
33 using System.Runtime.Serialization;
35 namespace System.Management
37 public class ManagementNamedValueCollection : NameObjectCollectionBase
39 public ManagementNamedValueCollection ()
43 #if NET_2_0
44 protected
45 #else
46 public
47 #endif
48 ManagementNamedValueCollection (SerializationInfo info, StreamingContext context)
49 : base (info, context)
53 public void Add (string name, object value)
55 if (BaseGet (name) != null)
56 BaseRemove (name);
58 BaseAdd (name, value);
61 public ManagementNamedValueCollection Clone ()
63 ManagementNamedValueCollection result = new ManagementNamedValueCollection ();
64 foreach (string key in Keys) {
65 object value = BaseGet (key);
66 if (value == null) {
67 result.Add (key, value);
68 continue;
71 if (value is ICloneable) {
72 result.Add (key, ((ICloneable) value).Clone ());
73 } else {
74 result.Add (key, value);
78 return result;
81 public void Remove (string name)
83 BaseRemove (name);
86 public void RemoveAll ()
88 BaseClear ();
91 public object this [string name] {
92 get { return BaseGet (name); }