Autodesk Vault ProfessionalVault API

Invoke(Delegate,Object[]) Method

Autodesk.DataManagement.Client.Framework.Vault.Forms.ControlsClassicVaultNavigationPathComboboxControl

Executes the specified delegate, on the thread that owns the control's underlying window handle, with the specified list of arguments.

Syntax

public System.object Invoke(
   System.Delegate method,
   params System.object[] args
)
Public Overloads Function Invoke( _
   ByVal method As System.Delegate, _
   ByVal ParamArray args() As System.Object _
) As System.Object

Parameters

NameDescription
methodA delegate to a method that takes parameters of the same number and type that are contained in the args parameter.
argsAn array of objects to pass as arguments to the specified method. This parameter can be a null reference (Nothing in Visual Basic) if the method takes no arguments.

Return Value

An System.Object that contains the return value from the delegate being invoked, or a null reference (Nothing in Visual Basic) if the delegate has no return value.

See Also