MethodData Class
.NET Framework 2.0
Contains information about a WMI method.
Namespace: System.Management
Assembly: System.Management (in system.management.dll)
Assembly: System.Management (in system.management.dll)
The following example lists information about the Win32_Process.Create method using the MethodData class. For more information on the Win32_Process class, see the Windows Management Instrumentation documentation in the MSDN Library at http://msdn.microsoft.com/library.
using System; using System.Management; public class Sample { public static void Main() { // Get the WMI class ManagementClass processClass = new ManagementClass("Win32_Process"); processClass.Options.UseAmendedQualifiers = true; // Get the methods in the class MethodDataCollection methods = processClass.Methods; // display the method names Console.WriteLine("Method Name: "); foreach (MethodData method in methods) { if(method.Name.Equals("Create")) { Console.WriteLine(method.Name); Console.WriteLine("Description: " + method.Qualifiers["Description"].Value); Console.WriteLine(); Console.WriteLine("In-parameters: "); foreach(PropertyData i in method.InParameters.Properties) { Console.WriteLine(i.Name); } Console.WriteLine(); Console.WriteLine("Out-parameters: "); foreach(PropertyData o in method.OutParameters.Properties) { Console.WriteLine(o.Name); } Console.WriteLine(); Console.WriteLine("Qualifiers: "); foreach(QualifierData q in method.Qualifiers) { Console.WriteLine(q.Name); } Console.WriteLine(); } } } }
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.