InvokeMethodOptions Classe

Definizione

Specifica le opzioni per richiamare un metodo di gestione.

public ref class InvokeMethodOptions : System::Management::ManagementOptions
public class InvokeMethodOptions : System.Management.ManagementOptions
type InvokeMethodOptions = class
    inherit ManagementOptions
Public Class InvokeMethodOptions
Inherits ManagementOptions
Ereditarietà
InvokeMethodOptions

Esempio

Nell'esempio seguente viene richiamato il metodo Win32_Process::Create per avviare un nuovo processo di Calc.exe. La InvokeMethodOptions classe viene utilizzata per richiamare il metodo .

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

Costruttori

Nome Descrizione
InvokeMethodOptions()

Inizializza una nuova istanza della InvokeMethodOptions classe per l'operazione InvokeMethod(String, Object[]) utilizzando i valori predefiniti. Si tratta del costruttore senza parametri.

InvokeMethodOptions(ManagementNamedValueCollection, TimeSpan)

Inizializza una nuova istanza della InvokeMethodOptions classe per un'operazione invoke utilizzando i valori specificati.

Proprietà

Nome Descrizione
Context

Ottiene o imposta un oggetto contesto WMI. Si tratta di un elenco di coppie nome-valore da passare a un provider WMI che supporta le informazioni di contesto per l'operazione personalizzata.

(Ereditato da ManagementOptions)
Timeout

Ottiene o imposta il timeout da applicare all'operazione. Si noti che per le operazioni che restituiscono raccolte, questo timeout si applica all'enumerazione tramite la raccolta risultante, non all'operazione stessa (la ReturnImmediately proprietà viene usata per quest'ultima). Questa proprietà viene utilizzata per indicare che l'operazione deve essere eseguita in modo semi sincrono.

(Ereditato da ManagementOptions)

Metodi

Nome Descrizione
Clone()

Restituisce una copia dell'oggetto .

Equals(Object)

Determina se l'oggetto specificato è uguale all'oggetto corrente.

(Ereditato da Object)
GetHashCode()

Funge da funzione hash predefinita.

(Ereditato da Object)
GetType()

Ottiene il Type dell'istanza corrente.

(Ereditato da Object)
MemberwiseClone()

Crea una copia superficiale del Objectcorrente.

(Ereditato da Object)
ToString()

Restituisce una stringa che rappresenta l'oggetto corrente.

(Ereditato da Object)

Si applica a