This documentation is archived and is not being maintained.

PropertyDataCollection.PropertyDataEnumerator Class

Represents the enumerator for PropertyData objects in the PropertyDataCollection.

Namespace:  System.Management
Assembly:  System.Management (in System.Management.dll)

'Declaration
Public Class PropertyDataEnumerator _
	Implements IEnumerator
'Usage
Dim instance As PropertyDataCollection.PropertyDataEnumerator

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

System.Object
  System.Management.PropertyDataCollection.PropertyDataEnumerator

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

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
Show: