EntityProxy.CallAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
A Task<TResult> representing the result of the asynchronous operation.
Applies to
Azure SDK for .NET