This topic has not yet been rated - Rate this topic

ManagementObjectCollection.GetEnumerator Method

Returns the enumerator for the collection.

Namespace:  System.Management
Assembly:  System.Management (in System.Management.dll)
public ManagementObjectCollection..::.ManagementObjectEnumerator GetEnumerator()

Return Value

Type: System.Management.ManagementObjectCollection.ManagementObjectEnumerator
An IEnumerator that can be used to iterate through the collection.

You can only iterate (as in a Visual Basic .NET For Each statement or a C# For statement) through a forward-only enumerator one time. The memory containing the instances is released by WMI so that the enumerator cannot be rewound. Therefore, the Count method cannot be used since it requires rewinding the enumerator.

Forward-only enumerators are generally much faster and use less memory than conventional enumerators, but they do not allow calls to Reset.

If an enumerator is rewindable, the objects in the collection will be kept available for multiple enumerations.

.NET Framework Security

Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0, 1.1, 1.0
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.