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.
using System; using System.Management; public class RemoteConnect { public static void Main() { EnumerationOptions opt = new EnumerationOptions(); // Will enumerate instances of the given class // and any subclasses. opt.EnumerateDeep = true; ManagementClass c = new ManagementClass("CIM_Service"); foreach (ManagementObject o in c.GetInstances(opt)) Console.WriteLine(o["Name"]); } }
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.