ManagementClass.Methods Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a collection of MethodData objects that represent the methods defined in the WMI class.
public:
property System::Management::MethodDataCollection ^ Methods { System::Management::MethodDataCollection ^ get(); };
public System.Management.MethodDataCollection Methods { get; }
member this.Methods : System.Management.MethodDataCollection
Public ReadOnly Property Methods As MethodDataCollection
Property Value
A MethodDataCollection representing the methods defined in the WMI class.
Examples
The following example shows how to initialize a ManagementClass variable with a ManagementClass constructor and then get all the methods in the WMI class passed into the constructor.
using System;
using System.Management;
public class Example
{
public static void Main()
{
ManagementClass c =
new ManagementClass("Win32_Process");
foreach (MethodData m in c.Methods)
Console.WriteLine(
"The class contains this method: {0}", m.Name);
return;
}
}
Imports System.Management
Public Class Sample
Public Shared Function Main(ByVal args() _
As String) As Integer
Dim c As New ManagementClass("Win32_Process")
Dim m As MethodData
For Each m In c.Methods
Console.WriteLine( _
"This class contains this method : {0}", m.Name)
Next m
Return 0
End Function
End Class
Remarks
.NET Framework Security
Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.