MobileServiceClient.InvokeApiAsync Method (String, HttpMethod, IDictionary<String, String>)

 

Invokes a user-defined custom API of a Azure Mobile Service using the specified HTTP Method. Additional data will sent to through the query string.

Namespace:   Microsoft.WindowsAzure.MobileServices
Assembly:  Microsoft.WindowsAzure.Mobile (in Microsoft.WindowsAzure.Mobile.dll)

Syntax

public Task<JToken> InvokeApiAsync(
    string apiName,
    HttpMethod method,
    IDictionary<string, string> parameters
)
public:
virtual Task<JToken^>^ InvokeApiAsync(
    String^ apiName,
    HttpMethod^ method,
    IDictionary<String^, String^>^ parameters
) sealed
abstract InvokeApiAsync : 
        apiName:string *
        method:HttpMethod *
        parameters:IDictionary<string, string> -> Task<JToken>
override InvokeApiAsync : 
        apiName:string *
        method:HttpMethod *
        parameters:IDictionary<string, string> -> Task<JToken>
Public Function InvokeApiAsync (
    apiName As String,
    method As HttpMethod,
    parameters As IDictionary(Of String, String)
) As Task(Of JToken)

Parameters

Return Value

Type: System.Threading.Tasks.Task<JToken>

The response content from the custom api invocation.

See Also

InvokeApiAsync Overload
MobileServiceClient Class
Microsoft.WindowsAzure.MobileServices Namespace

Return to top