ManagementClass.Methods Property

Definition

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.

Applies to