다음을 통해 공유


ManagementClass.Methods 속성

정의

WMI 클래스에 정의된 메서드를 나타내는 MethodData 개체의 컬렉션을 가져오거나 설정합니다.

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

속성 값

WMI 클래스에 정의된 메서드를 나타내는 MethodDataCollection입니다.

예제

다음 예제에서는 생성자를 사용하여 변수를 ManagementClass 초기화한 ManagementClass 다음, 생성자에 전달된 WMI 클래스의 모든 메서드를 가져오는 방법을 보여 줍니다.

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

설명

.NET Framework 보안

직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분적으로 신뢰할 수 있는 코드에서 라이브러리를 사용 하 여입니다.

적용 대상