Autodesk Vault ProfessionalVault API

BeginInvoke(Delegate,Object[]) Method

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

Executes the specified delegate asynchronously with the specified arguments, on the thread that the control's underlying handle was created on.

Syntax

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

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 given method. This can be a null reference (Nothing in Visual Basic) if no arguments are needed.

Return Value

An System.IAsyncResult that represents the result of the System.Windows.Forms.Control.BeginInvoke(System.Delegate) operation.

See Also