(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Management / System.Management / PropertyDataCollection.cs
blob9eb7691b1887a3d277473d8fcf1b33b1af37ce3a
1 //
2 // System.Management.PropertyDataCollection
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.
30 using System;
31 using System.Collections;
33 namespace System.Management
35 public class PropertyDataCollection : ICollection, IEnumerable
37 internal PropertyDataCollection ()
41 [MonoTODO]
42 public virtual void Add (string propertyName, object propertyValue)
44 throw new NotImplementedException ();
47 [MonoTODO]
48 public void Add (string propertyName, CimType propertyType, bool isArray)
50 throw new NotImplementedException ();
53 [MonoTODO]
54 public void Add (string propertyName, object propertyValue, CimType propertyType)
56 throw new NotImplementedException ();
59 [MonoTODO]
60 public void CopyTo (PropertyData [] propertyArray, int index)
62 throw new NotImplementedException ();
65 [MonoTODO]
66 public virtual void CopyTo (Array array, int index)
68 throw new NotImplementedException ();
71 [MonoTODO]
72 public PropertyDataEnumerator GetEnumerator ()
74 throw new NotImplementedException ();
77 [MonoTODO]
78 public virtual void Remove (string propertyName)
80 throw new NotImplementedException ();
84 [MonoTODO]
85 IEnumerator IEnumerable.GetEnumerator ()
87 throw new NotImplementedException ();
90 [MonoTODO]
91 public virtual int Count {
92 get {
93 throw new NotImplementedException ();
97 [MonoTODO]
98 public virtual bool IsSynchronized {
99 get {
100 throw new NotImplementedException ();
104 [MonoTODO]
105 public virtual PropertyData this [string propertyName] {
106 get {
107 throw new NotImplementedException ();
111 [MonoTODO]
112 public virtual object SyncRoot {
113 get {
114 throw new NotImplementedException ();
118 public class PropertyDataEnumerator : IEnumerator
120 internal PropertyDataEnumerator ()
124 [MonoTODO]
125 public virtual bool MoveNext ()
127 throw new NotImplementedException ();
130 [MonoTODO]
131 public virtual void Reset ()
133 throw new NotImplementedException ();
136 public PropertyData Current {
137 [MonoTODO]
138 get {
139 throw new NotImplementedException ();
143 object IEnumerator.Current {
144 [MonoTODO]
145 get {
146 throw new NotImplementedException ();