2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / System.Management / System.Management / PropertyDataCollection.cs
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 //
9
10 //
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.
29 //
30 using System;
31 using System.Collections;
32
33 namespace System.Management
34 {
35         public class PropertyDataCollection : ICollection, IEnumerable
36         {
37                 internal PropertyDataCollection ()
38                 {
39                 }
40
41                 [MonoTODO]
42                 public virtual void Add (string propertyName, object propertyValue)
43                 {
44                         throw new NotImplementedException ();
45                 }
46
47                 [MonoTODO]
48                 public void Add (string propertyName, CimType propertyType, bool isArray)
49                 {
50                         throw new NotImplementedException ();
51                 }
52
53                 [MonoTODO]
54                 public void Add (string propertyName, object propertyValue, CimType propertyType)
55                 {
56                         throw new NotImplementedException ();
57                 }
58
59                 [MonoTODO]
60                 public void CopyTo (PropertyData [] propertyArray, int index)
61                 {
62                         throw new NotImplementedException ();
63                 }
64
65                 [MonoTODO]
66                 public virtual void CopyTo (Array array, int index)
67                 {
68                         throw new NotImplementedException ();
69                 }
70
71                 [MonoTODO]
72                 public PropertyDataEnumerator GetEnumerator ()
73                 {
74                         throw new NotImplementedException ();
75                 }
76
77                 [MonoTODO]
78                 public virtual void Remove (string propertyName)
79                 {
80                         throw new NotImplementedException ();
81                 }
82
83
84                 [MonoTODO]
85                 IEnumerator IEnumerable.GetEnumerator ()
86                 {
87                         throw new NotImplementedException ();
88                 }
89
90                 [MonoTODO]
91                 public virtual int Count {
92                         get {
93                                 throw new NotImplementedException ();
94                         }
95                 }
96
97                 [MonoTODO]
98                 public virtual bool IsSynchronized {
99                         get {
100                                 throw new NotImplementedException ();
101                         }
102                 }
103
104                 [MonoTODO]
105                 public virtual PropertyData this [string propertyName] {
106                         get {
107                                 throw new NotImplementedException ();
108                         }
109                 }
110
111                 [MonoTODO]
112                 public virtual object SyncRoot {
113                         get {
114                                 throw new NotImplementedException ();
115                         }
116                 }
117
118                 public class PropertyDataEnumerator : IEnumerator
119                 {
120                         internal PropertyDataEnumerator ()
121                         {
122                         }
123
124                         [MonoTODO]
125                         public virtual bool MoveNext ()
126                         {
127                                 throw new NotImplementedException ();
128                         }
129
130                         [MonoTODO]
131                         public virtual void Reset ()
132                         {
133                                 throw new NotImplementedException ();
134                         }
135
136                         public PropertyData Current {
137                                 [MonoTODO]
138                                 get {
139                                         throw new NotImplementedException ();
140                                 }
141                         }
142
143                         object IEnumerator.Current {
144                                 [MonoTODO]
145                                 get {
146                                         throw new NotImplementedException ();
147                                 }
148                         }
149                 }
150         }
151 }
152