ManagementClass.Path プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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 のセキュリティ
直前の呼び出し元に対する完全な信頼。 このメンバーは、部分的に信頼されているコードから使用することはできません。 詳細については、「 部分信頼コードからのライブラリの使用」を参照してください。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET