ManagementObjectCollection.ManagementObjectEnumerator Class
.NET Framework 2.0
Represents the enumerator on the collection.
Namespace: System.Management
Assembly: System.Management (in system.management.dll)
Assembly: System.Management (in system.management.dll)
The following example enumerates through all of the instances of the Win32_LogicalDisk class, and displays the DeviceID value for each instance.
Imports System Imports System.Management ' This sample demonstrates how to ' enumerate all logical disks ' using ManagementObjectEnumerator object. Class Sample_ManagementObjectEnumerator Public Overloads Shared Function _ Main(ByVal args() As String) As Integer Dim diskClass As New _ ManagementClass("Win32_LogicalDisk") Dim disks As ManagementObjectCollection = _ diskClass.GetInstances() Dim disksEnumerator As _ ManagementObjectCollection. _ ManagementObjectEnumerator = _ disks.GetEnumerator() While disksEnumerator.MoveNext() Dim disk As ManagementObject = _ CType(disksEnumerator.Current, _ ManagementObject) Console.WriteLine("Disk found: " & disk("deviceid")) End While Return 0 End Function End Class
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Community Additions
ADD
Show: