InvokeMethodOptions クラス
アセンブリ: System.Management (system.management.dll 内)


Win32_Process::Create メソッドを呼び出して、Calc.exe の新しいプロセスを開始する例を次に示します。このメソッドを呼び出すために InvokeMethodOptions クラスが使用されます。
Imports System Imports System.Management ' This sample demonstrates invoking ' a WMI method using parameter objects Class InvokeMethod Public Overloads Shared Function _ Main(ByVal args() As String) As Integer ' Get the object on which the ' method will be invoked Dim processClass As _ New ManagementClass("root\CIMV2", _ "Win32_Process", _ Nothing) ' Get an input parameters object for this method Dim inParams As ManagementBaseObject = _ processClass.GetMethodParameters("Create") ' Fill in input parameter values inParams("CommandLine") = "calc.exe" ' Method Options Dim methodOptions As New InvokeMethodOptions( _ Nothing, System.TimeSpan.MaxValue) ' Execute the method Dim outParams As ManagementBaseObject = _ processClass.InvokeMethod( _ "Create", inParams, methodOptions) ' Display results ' Note: The return code of the method ' is provided in the "returnValue" property ' of the outParams object Console.WriteLine( _ "Creation of calculator process returned: {0}", _ outParams("returnValue")) Console.WriteLine("Process ID: {0}", _ outParams("processId")) Return 0 End Function End Class
using System; using System.Management; // This sample demonstrates invoking // a WMI method using parameter objects public class InvokeMethod { public static void Main() { // Get the object on which the method will be invoked ManagementClass processClass = new ManagementClass("Win32_Process"); // Get an input parameters object for this method ManagementBaseObject inParams = processClass.GetMethodParameters("Create"); // Fill in input parameter values inParams["CommandLine"] = "calc.exe"; // Method Options InvokeMethodOptions methodOptions = new InvokeMethodOptions(null, System.TimeSpan.MaxValue); // Execute the method ManagementBaseObject outParams = processClass.InvokeMethod("Create", inParams, methodOptions); // Display results // Note: The return code of the method is // provided in the "returnValue" property // of the outParams object Console.WriteLine( "Creation of calculator process returned: " + outParams["returnValue"]); Console.WriteLine("Process ID: " + outParams["processId"]); } }

System.Management.ManagementOptions
System.Management.InvokeMethodOptions


Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


InvokeMethodOptions コンストラクタ ()
アセンブリ: System.Management (system.management.dll 内)


Win32_Process::Create メソッドを呼び出して、Calc.exe の新しいプロセスを開始する例を次に示します。InvokeMethodOptions クラスの既定コンストラクタが使用されます。
Imports System Imports System.Management ' This sample demonstrates invoking ' a WMI method using parameter objects Class InvokeMethod Public Overloads Shared Function _ Main(ByVal args() As String) As Integer ' Get the object on which the ' method will be invoked Dim processClass As _ New ManagementClass("root\CIMV2", _ "Win32_Process", _ Nothing) ' Get an input parameters object for this method Dim inParams As ManagementBaseObject = _ processClass.GetMethodParameters("Create") ' Fill in input parameter values inParams("CommandLine") = "calc.exe" ' Method Options Dim methodOptions As New InvokeMethodOptions methodOptions.Timeout = _ System.TimeSpan.MaxValue ' Execute the method Dim outParams As ManagementBaseObject = _ processClass.InvokeMethod( _ "Create", inParams, methodOptions) ' Display results ' Note: The return code of the method ' is provided in the "returnValue" property ' of the outParams object Console.WriteLine( _ "Creation of calculator process returned: {0}", _ outParams("returnValue")) Console.WriteLine("Process ID: {0}", _ outParams("processId")) Return 0 End Function End Class
using System; using System.Management; // This sample demonstrates invoking // a WMI method using parameter objects public class InvokeMethod { public static void Main() { // Get the object on which the method will be invoked ManagementClass processClass = new ManagementClass("Win32_Process"); // Get an input parameters object for this method ManagementBaseObject inParams = processClass.GetMethodParameters("Create"); // Fill in input parameter values inParams["CommandLine"] = "calc.exe"; // Method Options InvokeMethodOptions methodOptions = new InvokeMethodOptions(); methodOptions.Timeout = System.TimeSpan.MaxValue; // Execute the method ManagementBaseObject outParams = processClass.InvokeMethod("Create", inParams, methodOptions); // Display results // Note: The return code of the method is // provided in the "returnValue" property // of the outParams object Console.WriteLine( "Creation of calculator process returned: " + outParams["returnValue"]); Console.WriteLine("Process ID: " + outParams["processId"]); } }


Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


InvokeMethodOptions コンストラクタ (ManagementNamedValueCollection, TimeSpan)
アセンブリ: System.Management (system.management.dll 内)

Dim context As ManagementNamedValueCollection Dim timeout As TimeSpan Dim instance As New InvokeMethodOptions(context, timeout)
public function InvokeMethodOptions ( context : ManagementNamedValueCollection, timeout : TimeSpan )

Win32_Process::Create メソッドを呼び出して、Calc.exe の新しいプロセスを開始する例を次に示します。このメソッドを呼び出すために InvokeMethodOptions クラスが使用されます。
Imports System Imports System.Management ' This sample demonstrates invoking ' a WMI method using parameter objects Class InvokeMethod Public Overloads Shared Function _ Main(ByVal args() As String) As Integer ' Get the object on which the ' method will be invoked Dim processClass As _ New ManagementClass("root\CIMV2", _ "Win32_Process", _ Nothing) ' Get an input parameters object for this method Dim inParams As ManagementBaseObject = _ processClass.GetMethodParameters("Create") ' Fill in input parameter values inParams("CommandLine") = "calc.exe" ' Method Options Dim methodOptions As New InvokeMethodOptions( _ Nothing, System.TimeSpan.MaxValue) ' Execute the method Dim outParams As ManagementBaseObject = _ processClass.InvokeMethod( _ "Create", inParams, methodOptions) ' Display results ' Note: The return code of the method ' is provided in the "returnValue" property ' of the outParams object Console.WriteLine( _ "Creation of calculator process returned: {0}", _ outParams("returnValue")) Console.WriteLine("Process ID: {0}", _ outParams("processId")) Return 0 End Function End Class
using System; using System.Management; // This sample demonstrates invoking // a WMI method using parameter objects public class InvokeMethod { public static void Main() { // Get the object on which the method will be invoked ManagementClass processClass = new ManagementClass("Win32_Process"); // Get an input parameters object for this method ManagementBaseObject inParams = processClass.GetMethodParameters("Create"); // Fill in input parameter values inParams["CommandLine"] = "calc.exe"; // Method Options InvokeMethodOptions methodOptions = new InvokeMethodOptions(null, System.TimeSpan.MaxValue); // Execute the method ManagementBaseObject outParams = processClass.InvokeMethod("Create", inParams, methodOptions); // Display results // Note: The return code of the method is // provided in the "returnValue" property // of the outParams object Console.WriteLine( "Creation of calculator process returned: " + outParams["returnValue"]); Console.WriteLine("Process ID: " + outParams["processId"]); } }


Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


InvokeMethodOptions コンストラクタ

名前 | 説明 |
---|---|
InvokeMethodOptions () | InvokeMethod(String,Object[]) 操作のための InvokeMethodOptions クラスの新しいインスタンスを、既定値を使用して初期化します。これは既定のコンストラクタです。 |
InvokeMethodOptions (ManagementNamedValueCollection, TimeSpan) | 呼び出し操作のための InvokeMethodOptions クラスの新しいインスタンスを、指定した値を使用して初期化します。 |

InvokeMethodOptions プロパティ

名前 | 説明 | |
---|---|---|
![]() | Context | WMI (Windows Management Instrumentation) コンテキスト オブジェクトを取得または設定します。これは、カスタマイズされた操作のためのコンテキスト情報をサポートしている WMI プロバイダに渡す名前/値ペア リストです。 ( ManagementOptions から継承されます。) |
![]() | Timeout | 操作に適用するタイムアウトを取得または設定します。コレクションを返す操作では、このタイムアウトはその操作自体ではなく、結果として得られるコレクションの列挙に適用されます。操作自体に適用するには、ReturnImmediately プロパティを使用します。このプロパティは、操作が半同期的に実行されることを示すために使用されます。 ( ManagementOptions から継承されます。) |

InvokeMethodOptions メソッド

名前 | 説明 | |
---|---|---|
![]() | Clone | オーバーライドされます。 オブジェクトのコピーを返します。 |
![]() | Equals | オーバーロードされます。 2 つの Object インスタンスが等しいかどうかを判断します。 ( Object から継承されます。) |
![]() | GetHashCode | 特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用に適しています。 ( Object から継承されます。) |
![]() | GetType | 現在のインスタンスの Type を取得します。 ( Object から継承されます。) |
![]() | ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 ( Object から継承されます。) |
![]() | ToString | 現在の Object を表す String を返します。 ( Object から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | Finalize | Object がガベージ コレクションにより収集される前に、その Object がリソースを解放し、その他のクリーンアップ操作を実行できるようにします。 ( Object から継承されます。) |
![]() | MemberwiseClone | 現在の Object の簡易コピーを作成します。 ( Object から継承されます。) |

InvokeMethodOptions メンバ
InvokeMethodOptions データ型で公開されるメンバを以下の表に示します。


名前 | 説明 | |
---|---|---|
![]() | Context | WMI (Windows Management Instrumentation) コンテキスト オブジェクトを取得または設定します。これは、カスタマイズされた操作のためのコンテキスト情報をサポートしている WMI プロバイダに渡す名前/値ペア リストです。 (ManagementOptions から継承されます。) |
![]() | Timeout | 操作に適用するタイムアウトを取得または設定します。コレクションを返す操作では、このタイムアウトはその操作自体ではなく、結果として得られるコレクションの列挙に適用されます。操作自体に適用するには、ReturnImmediately プロパティを使用します。このプロパティは、操作が半同期的に実行されることを示すために使用されます。 (ManagementOptions から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | Clone | オーバーライドされます。 オブジェクトのコピーを返します。 |
![]() | Equals | オーバーロードされます。 2 つの Object インスタンスが等しいかどうかを判断します。 (Object から継承されます。) |
![]() | GetHashCode | 特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用に適しています。 (Object から継承されます。) |
![]() | GetType | 現在のインスタンスの Type を取得します。 (Object から継承されます。) |
![]() | ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 (Object から継承されます。) |
![]() | ToString | 現在の Object を表す String を返します。 (Object から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | Finalize | Object がガベージ コレクションにより収集される前に、その Object がリソースを解放し、その他のクリーンアップ操作を実行できるようにします。 (Object から継承されます。) |
![]() | MemberwiseClone | 現在の Object の簡易コピーを作成します。 (Object から継承されます。) |

Weblioに収録されているすべての辞書からInvokeMethodOptionsを検索する場合は、下記のリンクをクリックしてください。

- InvokeMethodOptionsのページへのリンク