[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / class / System.Management / System.Management / ManagementObjectCollection.cs
blobc59fdaf279daddc5434ecf9c6703355b4391e38b
1 //
2 // System.Management.ManagementObjectCollection
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 ManagementObjectCollection : ICollection, IEnumerable, IDisposable
37 private ManagementObjectCollection ()
41 ~ManagementObjectCollection ()
45 [MonoTODO]
46 public void CopyTo (System.Array array, int index)
48 throw new NotImplementedException ();
51 [MonoTODO]
52 public void CopyTo (ManagementBaseObject [] objectCollection, int index)
54 throw new NotImplementedException ();
57 [MonoTODO]
58 public void Dispose ()
60 throw new NotImplementedException ();
63 [MonoTODO]
64 public ManagementObjectEnumerator GetEnumerator ()
66 throw new NotImplementedException ();
69 public int Count {
70 [MonoTODO]
71 get {
72 throw new NotImplementedException ();
76 public bool IsSynchronized {
77 [MonoTODO]
78 get {
79 throw new NotImplementedException ();
83 public object SyncRoot {
84 [MonoTODO]
85 get {
86 throw new NotImplementedException ();
90 IEnumerator IEnumerable.GetEnumerator ()
92 throw new NotImplementedException ();
95 public class ManagementObjectEnumerator : IEnumerator, IDisposable
97 internal ManagementObjectEnumerator ()
101 [MonoTODO]
102 ~ManagementObjectEnumerator ()
106 [MonoTODO]
107 public void Dispose ()
109 throw new NotImplementedException ();
112 [MonoTODO]
113 public bool MoveNext ()
115 throw new NotImplementedException ();
118 [MonoTODO]
119 public void Reset ()
121 throw new NotImplementedException ();
124 public ManagementBaseObject Current {
125 [MonoTODO]
126 get {
127 throw new NotImplementedException ();
131 object IEnumerator.Current {
132 [MonoTODO]
133 get {
134 throw new NotImplementedException ();