(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Management / System.Management / QualifierDataCollection.cs
blob8863fe9eade22abb41b1e0964bd526bd63de3803
1 //
2 // System.Management.QualifierDataCollection
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 QualifierDataCollection : ICollection, IEnumerable
37 internal QualifierDataCollection ()
41 [MonoTODO]
42 public virtual void Add (string qualifierName, object qualifierValue)
44 throw new NotImplementedException ();
47 [MonoTODO]
48 public virtual void Add (string qualifierName,
49 object qualifierValue,
50 bool isAmended,
51 bool propagatesToInstance,
52 bool propagatesToSubclass,
53 bool isOverridable)
55 throw new NotImplementedException ();
58 [MonoTODO]
59 public void CopyTo (QualifierData [] qualifierArray, int index)
61 throw new NotImplementedException ();
64 [MonoTODO]
65 public virtual void CopyTo (Array array, int index)
67 throw new NotImplementedException ();
70 [MonoTODO]
71 public QualifierDataEnumerator GetEnumerator ()
73 throw new NotImplementedException ();
76 [MonoTODO]
77 public virtual void Remove (string qualifierName)
79 throw new NotImplementedException ();
82 public virtual int Count {
83 [MonoTODO]
84 get {
85 throw new NotImplementedException ();
89 public virtual bool IsSynchronized {
90 [MonoTODO]
91 get {
92 throw new NotImplementedException ();
96 public virtual QualifierData this [string qualifierName] {
97 [MonoTODO]
98 get {
99 throw new NotImplementedException ();
103 public virtual object SyncRoot {
104 [MonoTODO]
105 get {
106 throw new NotImplementedException ();
110 IEnumerator IEnumerable.GetEnumerator ()
112 throw new NotImplementedException ();
115 public class QualifierDataEnumerator : IEnumerator
117 internal QualifierDataEnumerator ()
121 [MonoTODO]
122 public virtual bool MoveNext ()
124 throw new NotImplementedException ();
127 [MonoTODO]
128 public virtual void Reset ()
130 throw new NotImplementedException ();
133 public QualifierData Current {
134 [MonoTODO]
135 get {
136 throw new NotImplementedException ();
140 object IEnumerator.Current {
141 [MonoTODO]
142 get {
143 throw new NotImplementedException ();