Share via


EntityProxy.CallAsync Method

Definition

Overloads

CallAsync(String, Object)

Call entity function.

CallAsync<TResult>(String, Object)

Call entity function.

CallAsync(String, Object)

Source:
EntityProxy.cs

Call entity function.

protected internal System.Threading.Tasks.Task CallAsync (string operationName, object operationInput);
member this.CallAsync : string * obj -> System.Threading.Tasks.Task
Protected Friend Function CallAsync (operationName As String, operationInput As Object) As Task

Parameters

operationName
String

The name of the operation.

operationInput
Object

The input for the operation.

Returns

A Task representing the result of the asynchronous operation.

Applies to

CallAsync<TResult>(String, Object)

Source:
EntityProxy.cs

Call entity function.

protected internal System.Threading.Tasks.Task<TResult> CallAsync<TResult> (string operationName, object operationInput);
member this.CallAsync : string * obj -> System.Threading.Tasks.Task<'Result>
Protected Friend Function CallAsync(Of TResult) (operationName As String, operationInput As Object) As Task(Of TResult)

Type Parameters

TResult

The return type of the called entity function.

Parameters

operationName
String

The name of the operation.

operationInput
Object

The input for the operation.

Returns

Task<TResult>

A Task<TResult> representing the result of the asynchronous operation.

Applies to