InvokeMethodOptions Kelas

Definisi

Menentukan opsi untuk memanggil metode manajemen.

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

Contoh

Contoh berikut memanggil metode Win32_Process::Create untuk memulai proses baru Calc.exe. Kelas InvokeMethodOptions ini digunakan untuk memanggil metode .

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

Konstruktor

Nama Deskripsi
InvokeMethodOptions()

Menginisialisasi instans InvokeMethodOptions baru kelas untuk InvokeMethod(String, Object[]) operasi, menggunakan nilai default. Ini adalah konstruktor tanpa parameter.

InvokeMethodOptions(ManagementNamedValueCollection, TimeSpan)

Menginisialisasi instans InvokeMethodOptions baru kelas untuk operasi pemanggilan menggunakan nilai yang ditentukan.

Properti

Nama Deskripsi
Context

Mendapatkan atau mengatur objek konteks WMI. Ini adalah daftar pasangan nama-nilai yang akan diteruskan ke penyedia WMI yang mendukung informasi konteks untuk operasi yang disesuaikan.

(Diperoleh dari ManagementOptions)
Timeout

Mendapatkan atau mengatur waktu habis untuk diterapkan ke operasi. Perhatikan bahwa untuk operasi yang mengembalikan koleksi, waktu habis ini berlaku untuk enumerasi melalui koleksi yang dihasilkan, bukan operasi itu sendiri ( ReturnImmediately properti digunakan untuk yang terakhir). Properti ini digunakan untuk menunjukkan bahwa operasi harus dilakukan secara semi-sinkron.

(Diperoleh dari ManagementOptions)

Metode

Nama Deskripsi
Clone()

Mengembalikan salinan objek.

Equals(Object)

Menentukan apakah objek yang ditentukan sama dengan objek saat ini.

(Diperoleh dari Object)
GetHashCode()

Berfungsi sebagai fungsi hash default.

(Diperoleh dari Object)
GetType()

Mendapatkan Type instans saat ini.

(Diperoleh dari Object)
MemberwiseClone()

Membuat salinan dangkal dari Objectsaat ini.

(Diperoleh dari Object)
ToString()

Mengembalikan string yang mewakili objek saat ini.

(Diperoleh dari Object)

Berlaku untuk