EnumerationOptions Class
.NET Framework 2.0
Provides a base class for query and enumeration-related options objects.
Namespace: System.Management
Assembly: System.Management (in system.management.dll)
Assembly: System.Management (in system.management.dll)
The following example initializes an EnumerationOptions variable with an EnumerationOptions constructor and then gets all the instances of a WMI class and its subclasses.
Imports System Imports System.Management Public Class RemoteConnect Public Overloads Shared Function Main( _ ByVal args() As String) As Integer Dim opt As New EnumerationOptions ' Will enumerate instances of the given class ' and any subclasses. opt.EnumerateDeep = True Dim mngmtClass As New ManagementClass("CIM_Service") Dim o As ManagementObject For Each o In mngmtClass.GetInstances(opt) Console.WriteLine(o("Name")) Next o 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: