MobileServiceClient Constructor (String, String, HttpMessageHandler )

 

Initializes a new instance of the MobileServiceClient class.

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

Syntax

public MobileServiceClient(
    string applicationUrl,
    string applicationKey,
    params HttpMessageHandler[] handlers
)
public:
MobileServiceClient(
    String^ applicationUrl,
    String^ applicationKey,
    ... array<HttpMessageHandler^>^ handlers
)
new : 
        applicationUrl:string *
        applicationKey:string *
        [<ParamArrayAttribute>] handlers:HttpMessageHandler[] -> MobileServiceClient
Public Sub New (
    applicationUrl As String,
    applicationKey As String,
    ParamArray handlers As HttpMessageHandler()
)

Parameters

  • applicationUrl
    Type: System.String

    The URI for the Microsoft Azure Mobile Service.

  • applicationKey
    Type: System.String

    The application key for the Azure Mobile Service.

See Also

MobileServiceClient Overload
MobileServiceClient Class
Microsoft.WindowsAzure.MobileServices Namespace

Return to top