Invokes a method on the object.
Namespace: Microsoft.VisualStudio.Shell.Design
Assembly: Microsoft.VisualStudio.Shell.Design (in Microsoft.VisualStudio.Shell.Design.dll)
Syntax
'宣言
Public Overridable Function InvokeMethod ( _
method As MethodInfo, _
instance As Object, _
args As Object() _
) As Object
'使用
Dim instance As VirtualTypeImplementor
Dim method As MethodInfo
Dim instance As Object
Dim args As Object()
Dim returnValue As Object
returnValue = instance.InvokeMethod(method, _
instance, args)
public virtual Object InvokeMethod(
MethodInfo method,
Object instance,
Object[] args
)
public:
virtual Object^ InvokeMethod(
MethodInfo^ method,
Object^ instance,
array<Object^>^ args
)
public function InvokeMethod(
method : MethodInfo,
instance : Object,
args : Object[]
) : Object
Parameters
method
Type: System.Reflection.MethodInfoThe method to invoke.
instance
Type: System.ObjectThe instance on which to invoke the method. This may be a null reference (Nothing in Visual Basic) if the method is static.
args
Type: []The arguments to the method.
Return Value
Type: System.Object
An object that represents a return value of an invoked method.
Exceptions
| Exception | Condition |
|---|---|
| NotImplementedException | If non-abstract derived class did not provide an implementation by overriding this method. |
Remarks
Invokes the specified method. If the method had a return value, this method should return it, otherwise it should return a null reference (Nothing in Visual Basic).
Permissions
- 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.
See Also
Reference
VirtualTypeImplementor Members