.NET Framework Class Library
ManagementObject.InvokeMethod Method (ManagementOperationObserver, String, Object[])
Invokes a method on the object, asynchronously.
Assembly: System.Management (in System.Management.dll)
Syntax
Visual Basic
Public Sub InvokeMethod ( _ watcher As ManagementOperationObserver, _ methodName As String, _ args As Object() _ )
C#
public void InvokeMethod( ManagementOperationObserver watcher, string methodName, Object[] args )
Visual C++
public: void InvokeMethod( ManagementOperationObserver^ watcher, String^ methodName, array<Object^>^ args )
F#
member InvokeMethod : watcher:ManagementOperationObserver * methodName:string * args:Object[] -> unit
Parameters
- watcher
- Type: System.Management.ManagementOperationObserver
The object to receive the results of the operation.
- methodName
- Type: System.String
The name of the method to execute.
- args
- Type: System.Object[]
An array containing parameter values.
Remarks
If the method is static, the execution should still succeed.
.NET Framework Security
Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
Version Information
.NET Framework
Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0.NET Framework Client Profile
Supported in: 4, 3.5 SP1.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
Platforms
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also