ManagementBaseObject.ClassPath 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
관리 개체의 클래스에 대한 경로를 가져옵니다.
public:
virtual property System::Management::ManagementPath ^ ClassPath { System::Management::ManagementPath ^ get(); };
public virtual System.Management.ManagementPath ClassPath { get; }
member this.ClassPath : System.Management.ManagementPath
Public Overridable ReadOnly Property ClassPath As ManagementPath
속성 값
관리 개체의 클래스에 대한 클래스 경로입니다.
예제
다음 예제 코드는 root\CIMV2 네임스페이스에 클래스 경로가 있는 모든 클래스를 나열합니다.
\\MyBox\root\cimv2:Win32_LogicalDisk= 'C:' 개체의 경우 클래스 경로는 \\MyBox\root\cimv2:Win32_LogicalDisk.
using System;
using System.Management;
public class Sample
{
public static void Main()
{
// Create a query for classes
SelectQuery query =
new SelectQuery("SELECT * FROM meta_class");
// Initialize an object searcher with this query
ManagementObjectSearcher searcher =
new ManagementObjectSearcher(query);
// Get the resulting collection and loop through it
foreach (ManagementObject classObject in searcher.Get())
{
Console.WriteLine(
classObject.ClassPath);
}
}
}
Imports System.Management
Class Sample
Public Overloads Shared Function _
Main(ByVal args() As String) As Integer
' Create a query for classes
Dim query As New SelectQuery( _
"SELECT * FROM meta_class")
' Initialize an object searcher with this query
Dim searcher As New ManagementObjectSearcher( _
query)
' Get the resulting collection and loop through it
For Each classObject As ManagementObject _
In searcher.Get()
Console.WriteLine( _
classObject.ClassPath)
Next
End Function
End Class
설명
속성 값
ManagementPath 관리 개체의 클래스 경로를 나타내는 입니다.
.NET Framework 보안
직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분적으로 신뢰할 수 있는 코드에서 라이브러리를 사용 하 여입니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET