PropertyDataCollection.PropertyDataEnumerator Class
.NET Framework 3.0
Represents the enumerator for PropertyData objects in the PropertyDataCollection.
Namespace: System.Management
Assembly: System.Management (in system.management.dll)
Assembly: System.Management (in system.management.dll)
The following example enumerates through the properties of the Win32_LogicalDisk class.
Imports System Imports System.Management ' This sample demonstrates how to ' enumerate all properties in a ' ManagementObject using ' PropertyDataEnumerator object. Class Sample_PropertyDataEnumerator Public Overloads Shared Function _ Main(ByVal args() As String) As Integer Dim disk As New ManagementObject( _ "Win32_LogicalDisk.DeviceID='C:'") Dim propertyEnumerator As _ PropertyDataCollection.PropertyDataEnumerator _ = disk.Properties.GetEnumerator() While propertyEnumerator.MoveNext() Dim p As PropertyData = _ CType(propertyEnumerator.Current, PropertyData) Console.WriteLine("Property found: " & p.Name) End While Return 0 End Function End Class
Windows 98, Windows Server 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 Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: