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

'宣言
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

  • instance
    Type: System.Object

    The 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

See Also

Reference

VirtualTypeImplementor Class

VirtualTypeImplementor Members

Microsoft.VisualStudio.Shell.Design Namespace

VirtualTypeImplementor