ManagementObject.ClassPath 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定物件類別的路徑。
public:
virtual property System::Management::ManagementPath ^ ClassPath { System::Management::ManagementPath ^ get(); };
public override System.Management.ManagementPath ClassPath { get; }
member this.ClassPath : System.Management.ManagementPath
Public Overrides ReadOnly Property ClassPath As ManagementPath
屬性值
ManagementPath,表示通往物件類別的路徑。
範例
下列範例會初始化 類別的新實例 ManagementObject ,然後擷取的 ManagementObject類別路徑。
using System;
using System.Management;
public class Sample
{
public static void Main()
{
ManagementObject o = new ManagementObject();
// Specify the WMI path to which
// this object should be bound to
o.Path = new ManagementPath(
"Win32_Process.Name='calc.exe'");
}
}
Imports System.Management
Public Class Sample
Public Overloads Shared Function Main( _
ByVal args() As String) As Integer
Dim o As New ManagementObject
' Specify the WMI path to which
' this object should be bound to
o.Path = New ManagementPath( _
"Win32_Process.Name=""calc.exe""")
Return 0
End Function
End Class
備註
這個屬性是唯讀的。
.NET Framework 安全性
完全信任立即呼叫者。 這個成員無法供部分信任的程式碼使用。 如需詳細資訊,請參閱 使用部分信任程式代碼的連結庫。