VirtualTypeImplementor.InvokeMethod Method
Invokes a method on the object.
Namespace: Microsoft.VisualStudio.Shell.Design
Assembly: Microsoft.VisualStudio.Shell.Design (in Microsoft.VisualStudio.Shell.Design.dll)
Syntax
'Declaration
Public Overridable Function InvokeMethod ( _
method As MethodInfo, _
instance As Object, _
args As Object() _
) As Object
public virtual Object InvokeMethod(
MethodInfo method,
Object instance,
Object[] args
)
public:
virtual Object^ InvokeMethod(
MethodInfo^ method,
Object^ instance,
array<Object^>^ args
)
abstract InvokeMethod :
method:MethodInfo *
instance:Object *
args:Object[] -> Object
override InvokeMethod :
method:MethodInfo *
instance:Object *
args:Object[] -> Object
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 nulla null reference (Nothing in Visual Basic) if the method is static.
args
Type: array<System.Object[]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 nulla null reference (Nothing in Visual Basic).
.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.