ManagementBaseObject.ClassPath Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Yönetim nesnesinin sınıfının yolunu alır.
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
Özellik Değeri
Yönetim nesnesinin sınıfının sınıf yolu.
Örnekler
Aşağıdaki örnek kod, root\CIMV2 ad alanında sınıf yollarını içeren tüm sınıfları listeler.
\\MyBox\root\cimv2:Win32_LogicalDisk= 'C:' nesnesi için, sınıf yolu \\MyBox\root\cimv2:Win32_LogicalDisk şeklindedir.
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
Açıklamalar
Özellik Değeri
ManagementPath Yönetim nesnesinin sınıfının yolunu temsil eden bir.
.NET Framework Güvenliği
Anında arayanlar için tam güven. Bu üye kısmen güvenilen kodla kullanılamaz. Daha fazla bilgi için bkz. Kısmen Güvenilen Koddan Kitaplıkları Kullanma.