DynamicScriptObject.TryInvoke(InvokeBinder, Object[], Object) Method

Definition

Calls the default script method.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 override bool TryInvoke(System::Dynamic::InvokeBinder ^ binder, cli::array <System::Object ^> ^ args, [Runtime::InteropServices::Out] System::Object ^ % result);
public override bool TryInvoke (System.Dynamic.InvokeBinder binder, object[] args, out object result);
override this.TryInvoke : System.Dynamic.InvokeBinder * obj[] * obj -> bool
Public Overrides Function TryInvoke (binder As InvokeBinder, args As Object(), ByRef result As Object) As Boolean

Parameters

binder
InvokeBinder

The binder provided by the call site.

args
Object[]

The arguments to pass to the default method.

result
Object

The method result.

Returns

Always return true.

Exceptions

binder is null.

The method does not exist.

Remarks

The TryInvoke method throws an exception if the method does not exist.

Applies to