다음을 통해 공유


ManagementClass.Path 속성

정의

ManagementClass 개체가 바인딩된 WMI 클래스의 경로를 가져오거나 설정합니다.

public:
 virtual property System::Management::ManagementPath ^ Path { System::Management::ManagementPath ^ get(); void set(System::Management::ManagementPath ^ value); };
public override System.Management.ManagementPath Path { get; set; }
member this.Path : System.Management.ManagementPath with get, set
Public Overrides Property Path As ManagementPath

속성 값

개체 클래스의 경로입니다.

예제

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

using System;
using System.Management;

public class Example
{
    public static void Main()
    {
        ManagementClass c = new ManagementClass();
        c.Path.ClassName = "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
        c.Path.ClassName = "Win32_Process"

        Dim m As MethodData
        For Each m In c.Methods
            Console.WriteLine( _
                "The class contains the method : {0}", m.Name)
        Next m

        Return 0
    End Function
End Class

설명

속성이 새 값 ManagementClass 으로 설정되면 이전에 바인딩된 WMI 클래스와 연결이 끊어집니다. 새 WMI 클래스 경로에 다시 연결합니다.

.NET Framework 보안

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

적용 대상