2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / System.Management / System.Management / EnumerationOptions.cs
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 //
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 namespace System.Management
32 {
33         public class EnumerationOptions : ManagementOptions
34         {
35                 public EnumerationOptions ()
36                 {
37                 }
38
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)
49                 {
50                 }
51
52                 [MonoTODO]
53                 public override object Clone ()
54                 {
55                         throw new NotImplementedException ();
56                 }
57
58                 public int BlockSize {
59                         [MonoTODO]
60                         get {
61                                 throw new NotImplementedException ();
62                         }
63                         [MonoTODO]
64                         set {
65                                 throw new NotImplementedException ();
66                         }
67                 }
68
69                 public bool DirectRead {
70                         [MonoTODO]
71                         get {
72                                 throw new NotImplementedException ();
73                         }
74                         [MonoTODO]
75                         set {
76                                 throw new NotImplementedException ();
77                         }
78                 }
79
80                 public bool EnsureLocatable {
81                         [MonoTODO]
82                         get {
83                                 throw new NotImplementedException ();
84                         }
85                         [MonoTODO]
86                         set {
87                                 throw new NotImplementedException ();
88                         }
89                 }
90
91                 public bool EnumerateDeep {
92                         [MonoTODO]
93                         get {
94                                 throw new NotImplementedException ();
95                         }
96                         [MonoTODO]
97                         set {
98                                 throw new NotImplementedException ();
99                         }
100                 }
101
102                 public bool PrototypeOnly {
103                         [MonoTODO]
104                         get {
105                                 throw new NotImplementedException ();
106                         }
107                         [MonoTODO]
108                         set {
109                                 throw new NotImplementedException ();
110                         }
111                 }
112
113                 public bool ReturnImmediately {
114                         [MonoTODO]
115                         get {
116                                 throw new NotImplementedException ();
117                         }
118                         [MonoTODO]
119                         set {
120                                 throw new NotImplementedException ();
121                         }
122                 }
123
124                 public bool Rewindable {
125                         [MonoTODO]
126                         get {
127                                 throw new NotImplementedException ();
128                         }
129                         [MonoTODO]
130                         set {
131                                 throw new NotImplementedException ();
132                         }
133                 }
134
135                 public bool UseAmendedQualifiers {
136                         [MonoTODO]
137                         get {
138                                 throw new NotImplementedException ();
139                         }
140                         [MonoTODO]
141                         set {
142                                 throw new NotImplementedException ();
143                         }
144                 }
145         }
146 }
147