InvokeMethodOptions Klasse
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Gibt Optionen für den Aufruf einer Verwaltungsmethode an.
public ref class InvokeMethodOptions : System::Management::ManagementOptions
public class InvokeMethodOptions : System.Management.ManagementOptions
type InvokeMethodOptions = class
inherit ManagementOptions
Public Class InvokeMethodOptions
Inherits ManagementOptions
- Vererbung
Beispiele
Im folgenden Beispiel wird die Win32_Process::Create-Methode aufgerufen, um einen neuen Prozess der Calc.exe zu starten. Die InvokeMethodOptions -Klasse wird verwendet, um die -Methode aufzurufen.
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"]);
}
}
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
Konstruktoren
InvokeMethodOptions() |
Initialisiert für die InvokeMethodOptions-Operation eine neue Instanz der InvokeMethod(String, Object[])-Klasse mit Standardwerten. Dies ist der parameterlose Konstruktor. |
InvokeMethodOptions(ManagementNamedValueCollection, TimeSpan) |
Initialisiert für eine Aufrufoperation eine neue Instanz der InvokeMethodOptions-Klasse mit den angegebenen Werten. |
Eigenschaften
Context |
Ruft ein WMI-Kontextobjekt ab oder legt dieses fest. Dies ist eine Liste von Name-Wert-Paaren, die zur Übergabe an einen WMI-Anbieter bestimmt ist, der Kontextinformationen für benutzerdefinierte Operationen unterstützt. (Geerbt von ManagementOptions) |
Timeout |
Ruft das für die Operation geltende Timeout ab oder legt dieses fest. Beachten Sie Folgendes: Dieses Timeout gilt bei Operationen, die Auflistungen zurückgeben, für die Enumeration der resultierenden Auflistung, aber nicht für die eigentliche Operation (die ReturnImmediately-Eigenschaft wird für die eigentliche Operation verwendet). Mit dieser Eigenschaft wird angegeben, dass die Operation halbsynchron durchzuführen ist. (Geerbt von ManagementOptions) |
Methoden
Clone() |
Gibt eine Kopie des Objekts zurück. |
Equals(Object) |
Bestimmt, ob das angegebene Objekt gleich dem aktuellen Objekt ist. (Geerbt von Object) |
GetHashCode() |
Fungiert als Standardhashfunktion. (Geerbt von Object) |
GetType() |
Ruft den Type der aktuellen Instanz ab. (Geerbt von Object) |
MemberwiseClone() |
Erstellt eine flache Kopie des aktuellen Object. (Geerbt von Object) |
ToString() |
Gibt eine Zeichenfolge zurück, die das aktuelle Objekt darstellt. (Geerbt von Object) |