-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathEnumerationOptions.xml
More file actions
506 lines (442 loc) · 30.4 KB
/
Copy pathEnumerationOptions.xml
File metadata and controls
506 lines (442 loc) · 30.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
<Type Name="EnumerationOptions" FullName="System.Management.EnumerationOptions">
<TypeSignature Language="C#" Value="public class EnumerationOptions : System.Management.ManagementOptions" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit EnumerationOptions extends System.Management.ManagementOptions" />
<TypeSignature Language="DocId" Value="T:System.Management.EnumerationOptions" />
<TypeSignature Language="VB.NET" Value="Public Class EnumerationOptions
Inherits ManagementOptions" />
<TypeSignature Language="F#" Value="type EnumerationOptions = class
 inherit ManagementOptions" />
<TypeSignature Language="C++ CLI" Value="public ref class EnumerationOptions : System::Management::ManagementOptions" />
<AssemblyInfo>
<AssemblyName>System.Management</AssemblyName>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.1</AssemblyVersion>
<AssemblyVersion>9.0.0.2</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Management.ManagementOptions</BaseTypeName>
</Base>
<Interfaces />
<Docs>
<summary>Provides a base class for query and enumeration-related options objects.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Examples
The following example initializes an <xref:System.Management.EnumerationOptions> variable with an <xref:System.Management.EnumerationOptions> constructor and then gets all the instances of a WMI class and its subclasses.
:::code language="csharp" source="~/snippets/csharp/VS_Snippets_WindowsServer/wminet_EnumerationOptions/cs/EnumerationOptions.cs" id="Snippet1":::
:::code language="vb" source="~/snippets/visualbasic/System.Management/EnumerationOptions/Overview/EnumerationOptions.vb" id="Snippet1":::
]]></format>
</remarks>
</Docs>
<Members>
<MemberGroup MemberName=".ctor">
<AssemblyInfo>
<AssemblyName>System.Management</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Docs>
<summary>Initializes a new instance of the <see cref="T:System.Management.EnumerationOptions" /> class.</summary>
</Docs>
</MemberGroup>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public EnumerationOptions ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Management.EnumerationOptions.#ctor" />
<MemberSignature Language="VB.NET" Value="Public Sub New ()" />
<MemberSignature Language="C++ CLI" Value="public:
 EnumerationOptions();" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>System.Management</AssemblyName>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters />
<Docs>
<summary>Initializes a new instance of the <see cref="T:System.Management.EnumerationOptions" /> class with default values (see the individual property descriptions for what the default values are). This is the parameterless constructor.</summary>
<remarks>
<format type="text/markdown"><.
## Examples
The following example initializes an <xref:System.Management.EnumerationOptions> variable with an <xref:System.Management.EnumerationOptions> constructor and then gets all the instances of a WMI class and its subclasses.
:::code language="csharp" source="~/snippets/csharp/VS_Snippets_WindowsServer/wminet_EnumerationOptions/cs/EnumerationOptions.cs" id="Snippet1":::
:::code language="vb" source="~/snippets/visualbasic/System.Management/EnumerationOptions/Overview/EnumerationOptions.vb" id="Snippet1":::
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public EnumerationOptions (System.Management.ManagementNamedValueCollection context, TimeSpan timeout, int blockSize, bool rewindable, bool returnImmediatley, bool useAmendedQualifiers, bool ensureLocatable, bool prototypeOnly, bool directRead, bool enumerateDeep);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class System.Management.ManagementNamedValueCollection context, valuetype System.TimeSpan timeout, int32 blockSize, bool rewindable, bool returnImmediatley, bool useAmendedQualifiers, bool ensureLocatable, bool prototypeOnly, bool directRead, bool enumerateDeep) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Management.EnumerationOptions.#ctor(System.Management.ManagementNamedValueCollection,System.TimeSpan,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean)" />
<MemberSignature Language="VB.NET" Value="Public Sub New (context As ManagementNamedValueCollection, timeout As TimeSpan, blockSize As Integer, rewindable As Boolean, returnImmediatley As Boolean, useAmendedQualifiers As Boolean, ensureLocatable As Boolean, prototypeOnly As Boolean, directRead As Boolean, enumerateDeep As Boolean)" />
<MemberSignature Language="F#" Value="new System.Management.EnumerationOptions : System.Management.ManagementNamedValueCollection * TimeSpan * int * bool * bool * bool * bool * bool * bool * bool -> System.Management.EnumerationOptions" Usage="new System.Management.EnumerationOptions (context, timeout, blockSize, rewindable, returnImmediatley, useAmendedQualifiers, ensureLocatable, prototypeOnly, directRead, enumerateDeep)" />
<MemberSignature Language="C++ CLI" Value="public:
 EnumerationOptions(System::Management::ManagementNamedValueCollection ^ context, TimeSpan timeout, int blockSize, bool rewindable, bool returnImmediatley, bool useAmendedQualifiers, bool ensureLocatable, bool prototypeOnly, bool directRead, bool enumerateDeep);" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>System.Management</AssemblyName>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="context" Type="System.Management.ManagementNamedValueCollection" />
<Parameter Name="timeout" Type="System.TimeSpan" />
<Parameter Name="blockSize" Type="System.Int32" />
<Parameter Name="rewindable" Type="System.Boolean" />
<Parameter Name="returnImmediatley" Type="System.Boolean" />
<Parameter Name="useAmendedQualifiers" Type="System.Boolean" />
<Parameter Name="ensureLocatable" Type="System.Boolean" />
<Parameter Name="prototypeOnly" Type="System.Boolean" />
<Parameter Name="directRead" Type="System.Boolean" />
<Parameter Name="enumerateDeep" Type="System.Boolean" />
</Parameters>
<Docs>
<param name="context">The options context object containing provider-specific information that can be passed through to the provider.</param>
<param name="timeout">The time-out value for enumerating through the results.</param>
<param name="blockSize">The number of items to retrieve at one time from WMI.</param>
<param name="rewindable">
<see langword="true" /> to show that the result set is rewindable (allows multiple traversal); otherwise, <see langword="false" />.</param>
<param name="returnImmediatley">
<see langword="true" /> to show that the operation should return immediately (semi-sync) or block until all results are available; otherwise, <see langword="false" />.</param>
<param name="useAmendedQualifiers">
<see langword="true" /> to show that the returned objects should contain amended (locale-aware) qualifiers; otherwise, <see langword="false" />.</param>
<param name="ensureLocatable">
<see langword="true" /> to ensure all returned objects have valid paths; otherwise, <see langword="false" />.</param>
<param name="prototypeOnly">
<see langword="true" /> to return a prototype of the result set instead of the actual results; otherwise, <see langword="false" />.</param>
<param name="directRead">
<see langword="true" /> to retrieve objects of only the specified class or from derived classes as well; otherwise, <see langword="false" />.</param>
<param name="enumerateDeep">
<see langword="true" /> to use recursive enumeration in subclasses; otherwise, <see langword="false" />.</param>
<summary>Initializes a new instance of the <see cref="T:System.Management.EnumerationOptions" /> class to be used for queries or enumerations, allowing the user to specify values for the different options.</summary>
<remarks>
<format type="text/markdown"><.
## Examples
The following example initializes an <xref:System.Management.EnumerationOptions> variable with an <xref:System.Management.EnumerationOptions> constructor and then gets all the instances of a WMI class and its subclasses.
:::code language="csharp" source="~/snippets/csharp/VS_Snippets_WindowsServer/wminet_EnumerationOptions-10/cs/EnumerationOptions-10.cs" id="Snippet1":::
:::code language="vb" source="~/snippets/visualbasic/System.Management/EnumerationOptions/.ctor/EnumerationOptions-10.vb" id="Snippet1":::
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="BlockSize">
<MemberSignature Language="C#" Value="public int BlockSize { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance int32 BlockSize" />
<MemberSignature Language="DocId" Value="P:System.Management.EnumerationOptions.BlockSize" />
<MemberSignature Language="VB.NET" Value="Public Property BlockSize As Integer" />
<MemberSignature Language="F#" Value="member this.BlockSize : int with get, set" Usage="System.Management.EnumerationOptions.BlockSize" />
<MemberSignature Language="C++ CLI" Value="public:
 property int BlockSize { int get(); void set(int value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Management</AssemblyName>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets the block size for block operations. When enumerating through a collection, WMI will return results in groups of the specified size.</summary>
<value>The block size in block operations.</value>
<remarks>
<format type="text/markdown"><.
## Examples
The following example initializes an <xref:System.Management.EnumerationOptions> variable with an <xref:System.Management.EnumerationOptions> constructor and then gets all the instances of a WMI class and its subclasses.
:::code language="csharp" source="~/snippets/csharp/VS_Snippets_WindowsServer/wminet_EnumerationOptions_BlockSize/cs/EnumerationOptions_BlockSize.cs" id="Snippet1":::
:::code language="vb" source="~/snippets/visualbasic/System.Management/EnumerationOptions/BlockSize/EnumerationOptions_BlockSize.vb" id="Snippet1":::
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="Clone">
<MemberSignature Language="C#" Value="public override object Clone ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance object Clone() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Management.EnumerationOptions.Clone" />
<MemberSignature Language="VB.NET" Value="Public Overrides Function Clone () As Object" />
<MemberSignature Language="F#" Value="override this.Clone : unit -> obj" Usage="enumerationOptions.Clone " />
<MemberSignature Language="C++ CLI" Value="public:
 override System::Object ^ Clone();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Management</AssemblyName>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Object</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Returns a copy of the object.</summary>
<returns>The cloned object.</returns>
<remarks>
<format type="text/markdown"><.
]]></format>
</remarks>
<altmember cref="M:System.ICloneable.Clone" />
</Docs>
</Member>
<Member MemberName="DirectRead">
<MemberSignature Language="C#" Value="public bool DirectRead { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool DirectRead" />
<MemberSignature Language="DocId" Value="P:System.Management.EnumerationOptions.DirectRead" />
<MemberSignature Language="VB.NET" Value="Public Property DirectRead As Boolean" />
<MemberSignature Language="F#" Value="member this.DirectRead : bool with get, set" Usage="System.Management.EnumerationOptions.DirectRead" />
<MemberSignature Language="C++ CLI" Value="public:
 property bool DirectRead { bool get(); void set(bool value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Management</AssemblyName>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets a value indicating whether *direct access* to the WMI provider is requested for the specified class, without any regard to its super class or derived classes.</summary>
<value>
<see langword="true" /> if *direct access* to the WMI provider is requested for the specified class; otherwise, <see langword="false" />.</value>
<remarks>
<format type="text/markdown"><.
## Examples
The following example initializes an <xref:System.Management.EnumerationOptions> variable with an <xref:System.Management.EnumerationOptions> constructor and then gets all the instances of a WMI class and its subclasses.
:::code language="csharp" source="~/snippets/csharp/VS_Snippets_WindowsServer/wminet_EnumerationOptions_DirectRead/cs/EnumerationOptions_DirectRead.cs" id="Snippet1":::
:::code language="vb" source="~/snippets/visualbasic/System.Management/EnumerationOptions/DirectRead/EnumerationOptions_DirectRead.vb" id="Snippet1":::
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="EnsureLocatable">
<MemberSignature Language="C#" Value="public bool EnsureLocatable { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool EnsureLocatable" />
<MemberSignature Language="DocId" Value="P:System.Management.EnumerationOptions.EnsureLocatable" />
<MemberSignature Language="VB.NET" Value="Public Property EnsureLocatable As Boolean" />
<MemberSignature Language="F#" Value="member this.EnsureLocatable : bool with get, set" Usage="System.Management.EnumerationOptions.EnsureLocatable" />
<MemberSignature Language="C++ CLI" Value="public:
 property bool EnsureLocatable { bool get(); void set(bool value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Management</AssemblyName>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets a value indicating whether to the objects returned should have locatable information in them. This ensures that the system properties, such as **__PATH**, **__RELPATH**, and **__SERVER**, are non-NULL. This flag can only be used in queries, and is ignored in enumerations.</summary>
<value>
<see langword="true" /> if the objects returned should have locatable information in them; otherwise, <see langword="false" />.</value>
<remarks>
<format type="text/markdown"><.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="EnumerateDeep">
<MemberSignature Language="C#" Value="public bool EnumerateDeep { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool EnumerateDeep" />
<MemberSignature Language="DocId" Value="P:System.Management.EnumerationOptions.EnumerateDeep" />
<MemberSignature Language="VB.NET" Value="Public Property EnumerateDeep As Boolean" />
<MemberSignature Language="F#" Value="member this.EnumerateDeep : bool with get, set" Usage="System.Management.EnumerationOptions.EnumerateDeep" />
<MemberSignature Language="C++ CLI" Value="public:
 property bool EnumerateDeep { bool get(); void set(bool value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Management</AssemblyName>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets a value indicating whether recursive enumeration is requested into all classes derived from the specified superclass. If <see langword="false" />, only immediate derived class members are returned.</summary>
<value>
<see langword="true" /> if recursive enumeration is requested into all classes derived from the specified superclass; otherwise, <see langword="false" />.</value>
<remarks>
<format type="text/markdown"><.
## Examples
The following example initializes an <xref:System.Management.EnumerationOptions> variable with an <xref:System.Management.EnumerationOptions> constructor and then gets all the instances of a WMI class and its subclasses.
:::code language="csharp" source="~/snippets/csharp/VS_Snippets_WindowsServer/wminet_EnumerationOptions_EnumerateDeep/cs/EnumerationOptions_EnumerateDeep.cs" id="Snippet1":::
:::code language="vb" source="~/snippets/visualbasic/System.Management/EnumerationOptions/EnumerateDeep/EnumerationOptions_EnumerateDeep.vb" id="Snippet1":::
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="PrototypeOnly">
<MemberSignature Language="C#" Value="public bool PrototypeOnly { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool PrototypeOnly" />
<MemberSignature Language="DocId" Value="P:System.Management.EnumerationOptions.PrototypeOnly" />
<MemberSignature Language="VB.NET" Value="Public Property PrototypeOnly As Boolean" />
<MemberSignature Language="F#" Value="member this.PrototypeOnly : bool with get, set" Usage="System.Management.EnumerationOptions.PrototypeOnly" />
<MemberSignature Language="C++ CLI" Value="public:
 property bool PrototypeOnly { bool get(); void set(bool value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Management</AssemblyName>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets a value indicating whether the query should return a prototype of the result set instead of the actual results. This flag is used for prototyping.</summary>
<value>
<see langword="true" /> if the query should return a prototype of the result set instead of the actual results; otherwise, <see langword="false" />.</value>
<remarks>
<format type="text/markdown"><.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="ReturnImmediately">
<MemberSignature Language="C#" Value="public bool ReturnImmediately { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool ReturnImmediately" />
<MemberSignature Language="DocId" Value="P:System.Management.EnumerationOptions.ReturnImmediately" />
<MemberSignature Language="VB.NET" Value="Public Property ReturnImmediately As Boolean" />
<MemberSignature Language="F#" Value="member this.ReturnImmediately : bool with get, set" Usage="System.Management.EnumerationOptions.ReturnImmediately" />
<MemberSignature Language="C++ CLI" Value="public:
 property bool ReturnImmediately { bool get(); void set(bool value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Management</AssemblyName>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets a value indicating whether the invoked operation should be performed in a synchronous or semisynchronous fashion. If this property is set to <see langword="true" />, the enumeration is invoked and the call returns immediately. The actual retrieval of the results will occur when the resulting collection is walked.</summary>
<value>
<see langword="true" /> if the invoked operation should be performed in a synchronous or semisynchronous fashion; otherwise, <see langword="false" />.</value>
<remarks>
<format type="text/markdown"><.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="Rewindable">
<MemberSignature Language="C#" Value="public bool Rewindable { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool Rewindable" />
<MemberSignature Language="DocId" Value="P:System.Management.EnumerationOptions.Rewindable" />
<MemberSignature Language="VB.NET" Value="Public Property Rewindable As Boolean" />
<MemberSignature Language="F#" Value="member this.Rewindable : bool with get, set" Usage="System.Management.EnumerationOptions.Rewindable" />
<MemberSignature Language="C++ CLI" Value="public:
 property bool Rewindable { bool get(); void set(bool value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Management</AssemblyName>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets a value indicating whether the collection is assumed to be rewindable. If <see langword="true" />, the objects in the collection will be kept available for multiple enumerations. If <see langword="false" />, the collection can only be enumerated one time.</summary>
<value>
<see langword="true" /> if the collection is assumed to be rewindable; otherwise, <see langword="false" />.</value>
<remarks>
<format type="text/markdown"><.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="UseAmendedQualifiers">
<MemberSignature Language="C#" Value="public bool UseAmendedQualifiers { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool UseAmendedQualifiers" />
<MemberSignature Language="DocId" Value="P:System.Management.EnumerationOptions.UseAmendedQualifiers" />
<MemberSignature Language="VB.NET" Value="Public Property UseAmendedQualifiers As Boolean" />
<MemberSignature Language="F#" Value="member this.UseAmendedQualifiers : bool with get, set" Usage="System.Management.EnumerationOptions.UseAmendedQualifiers" />
<MemberSignature Language="C++ CLI" Value="public:
 property bool UseAmendedQualifiers { bool get(); void set(bool value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Management</AssemblyName>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets a value indicating whether the objects returned from WMI should contain amended information. Typically, amended information is localizable information attached to the WMI object, such as object and property descriptions.</summary>
<value>
<see langword="true" /> if the objects returned from WMI should contain amended information; otherwise, <see langword="false" />.</value>
<remarks>
<format type="text/markdown"><.
]]></format>
</remarks>
</Docs>
</Member>
</Members>
</Type>