InvokeMethodOptions Konstruktory
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Inicjuje InvokeMethodOptions nowe wystąpienie klasy dla operacji wywołania.
Przeciążenia
InvokeMethodOptions() |
Inicjuje InvokeMethodOptions nowe wystąpienie klasy dla InvokeMethod(String, Object[]) operacji przy użyciu wartości domyślnych. Jest to konstruktor bez parametrów. |
InvokeMethodOptions(ManagementNamedValueCollection, TimeSpan) |
Inicjuje InvokeMethodOptions nowe wystąpienie klasy dla operacji wywołania przy użyciu określonych wartości. |
InvokeMethodOptions()
- Źródło:
- ManagementOptions.cs
- Źródło:
- ManagementOptions.cs
- Źródło:
- ManagementOptions.cs
Inicjuje InvokeMethodOptions nowe wystąpienie klasy dla InvokeMethod(String, Object[]) operacji przy użyciu wartości domyślnych. Jest to konstruktor bez parametrów.
public:
InvokeMethodOptions();
public InvokeMethodOptions ();
Public Sub New ()
Przykłady
Poniższy przykład wywołuje metodę Win32_Process::Twórca, aby rozpocząć nowy proces Calc.exe. Używany jest konstruktor bez parametrów InvokeMethodOptions klasy.
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"]);
}
}
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
Uwagi
Zabezpieczenia.NET Framework
Pełne zaufanie do bezpośredniego wywołującego. Ten element członkowski nie może być używany przez kod częściowo zaufany. Aby uzyskać więcej informacji, zobacz Using Libraries from Partially Trusted Code (Używanie bibliotek z częściowo zaufanego kodu).
Dotyczy
InvokeMethodOptions(ManagementNamedValueCollection, TimeSpan)
- Źródło:
- ManagementOptions.cs
- Źródło:
- ManagementOptions.cs
- Źródło:
- ManagementOptions.cs
Inicjuje InvokeMethodOptions nowe wystąpienie klasy dla operacji wywołania przy użyciu określonych wartości.
public:
InvokeMethodOptions(System::Management::ManagementNamedValueCollection ^ context, TimeSpan timeout);
public InvokeMethodOptions (System.Management.ManagementNamedValueCollection context, TimeSpan timeout);
new System.Management.InvokeMethodOptions : System.Management.ManagementNamedValueCollection * TimeSpan -> System.Management.InvokeMethodOptions
Public Sub New (context As ManagementNamedValueCollection, timeout As TimeSpan)
Parametry
- context
- ManagementNamedValueCollection
Obiekt par o nazwie-value specyficzny dla dostawcy, który ma zostać przekazany do dostawcy.
- timeout
- TimeSpan
Czas oczekiwania na wykonanie operacji przed przekroczeniem limitu czasu. Wartość domyślna to TimeSpan.MaxValue. Ustawienie tego parametru spowoduje wywołanie operacji półsynchronicznie.
Przykłady
Poniższy przykład wywołuje metodę Win32_Process::Twórca, aby rozpocząć nowy proces Calc.exe. Klasa InvokeMethodOptions jest używana do wywoływania metody .
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
Uwagi
Zabezpieczenia.NET Framework
Pełne zaufanie do bezpośredniego wywołującego. Ten element członkowski nie może być używany przez kod częściowo zaufany. Aby uzyskać więcej informacji, zobacz Using Libraries from Partially Trusted Code (Używanie bibliotek z częściowo zaufanego kodu).