**** Merged from MCS ****
[mono-project.git] / mcs / class / System.Management / System.Management / EnumerationOptions.cs
blobdd8256b2e5b246b31ae07862786e37335ddbf1b3
1 //
2 // System.Management.EnumerationOptions
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 namespace System.Management
33 public class EnumerationOptions : ManagementOptions
35 public EnumerationOptions ()
39 public EnumerationOptions (ManagementNamedValueCollection context,
40 TimeSpan timeout,
41 int blockSize,
42 bool rewindable,
43 bool returnImmediatley,
44 bool useAmendedQualifiers,
45 bool ensureLocatable,
46 bool prototypeOnly,
47 bool directRead,
48 bool enumerateDeep)
52 [MonoTODO]
53 public override object Clone ()
55 throw new NotImplementedException ();
58 public int BlockSize {
59 [MonoTODO]
60 get {
61 throw new NotImplementedException ();
63 [MonoTODO]
64 set {
65 throw new NotImplementedException ();
69 public bool DirectRead {
70 [MonoTODO]
71 get {
72 throw new NotImplementedException ();
74 [MonoTODO]
75 set {
76 throw new NotImplementedException ();
80 public bool EnsureLocatable {
81 [MonoTODO]
82 get {
83 throw new NotImplementedException ();
85 [MonoTODO]
86 set {
87 throw new NotImplementedException ();
91 public bool EnumerateDeep {
92 [MonoTODO]
93 get {
94 throw new NotImplementedException ();
96 [MonoTODO]
97 set {
98 throw new NotImplementedException ();
102 public bool PrototypeOnly {
103 [MonoTODO]
104 get {
105 throw new NotImplementedException ();
107 [MonoTODO]
108 set {
109 throw new NotImplementedException ();
113 public bool ReturnImmediately {
114 [MonoTODO]
115 get {
116 throw new NotImplementedException ();
118 [MonoTODO]
119 set {
120 throw new NotImplementedException ();
124 public bool Rewindable {
125 [MonoTODO]
126 get {
127 throw new NotImplementedException ();
129 [MonoTODO]
130 set {
131 throw new NotImplementedException ();
135 public bool UseAmendedQualifiers {
136 [MonoTODO]
137 get {
138 throw new NotImplementedException ();
140 [MonoTODO]
141 set {
142 throw new NotImplementedException ();