InvokeMethodOptions Klasse

Definition

Gibt Optionen zum Aufrufen 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
InvokeMethodOptions

Beispiele

Im folgenden Beispiel wird die Win32_Process::Create-Methode aufgerufen, um einen neuen Prozess von Calc.exezu 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

Name Beschreibung
InvokeMethodOptions()

Initialisiert eine neue Instanz der InvokeMethodOptions Klasse für den InvokeMethod(String, Object[]) Vorgang mithilfe von Standardwerten. Dies ist der parameterlose Konstruktor.

InvokeMethodOptions(ManagementNamedValueCollection, TimeSpan)

Initialisiert eine neue Instanz der InvokeMethodOptions Klasse für einen Aufrufvorgang mithilfe der angegebenen Werte.

Eigenschaften

Name Beschreibung
Context

Dient zum Abrufen oder Festlegen eines WMI-Kontextobjekts. Dies ist eine Liste mit Namen-Wert-Paaren, die an einen WMI-Anbieter übergeben werden soll, der Kontextinformationen für einen angepassten Vorgang unterstützt.

(Geerbt von ManagementOptions)
Timeout

Ruft das Timeout ab, das auf den Vorgang angewendet werden soll, oder legt diesen fest. Beachten Sie, dass dieses Timeout für Vorgänge, die Sammlungen zurückgeben, für die Aufzählung über die resultierende Auflistung gilt, nicht für den Vorgang selbst (die ReturnImmediately Eigenschaft wird für letzteres verwendet). Diese Eigenschaft wird verwendet, um anzugeben, dass der Vorgang halbsynchron ausgeführt werden soll.

(Geerbt von ManagementOptions)

Methoden

Name Beschreibung
Clone()

Gibt eine Kopie des Objekts zurück.

Equals(Object)

Bestimmt, ob das angegebene Objekt dem aktuellen Objekt entspricht.

(Geerbt von Object)
GetHashCode()

Dient als Standardhashfunktion.

(Geerbt von Object)
GetType()

Ruft die Type der aktuellen Instanz ab.

(Geerbt von Object)
MemberwiseClone()

Erstellt eine flache Kopie der aktuellen Object.

(Geerbt von Object)
ToString()

Gibt eine Zeichenfolge zurück, die das aktuelle Objekt darstellt.

(Geerbt von Object)

Gilt für: