Click or drag to resize
IFunctionInvokeAsync Method
Schedules an invocation of this function.

Namespace: Lawo.EmberPlusSharp.Model
Assembly: Lawo.EmberPlusSharp (in Lawo.EmberPlusSharp.dll) Version: 1.4.1707.27006
Syntax
C#
Task<IResult> InvokeAsync(
	params Object[] actualArguments
)

Parameters

actualArguments
Type: SystemObject

Return Value

Type: TaskIResult
Exceptions
ExceptionCondition
ArgumentException
  • The Length property of actualArguments is not equal to the Count property of Arguments, or
  • the type of at least one element in actualArguments does not match the type of the corresponding element in Arguments.
InvocationFailedExceptionThe provider reported that the invocation failed.
Remarks
The invocation is sent automatically within the interval defined by AutoSendInterval. When AutoSendInterval equals Infinite, SendAsync must be called before awaiting the returned task.
See Also