MobileServiceClient Constructor (Uri, 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(
    Uri applicationUri,
    string applicationKey,
    params HttpMessageHandler[] handlers
)
public:
MobileServiceClient(
    Uri^ applicationUri,
    String^ applicationKey,
    ... array<HttpMessageHandler^>^ handlers
)
new : 
        applicationUri:Uri *
        applicationKey:string *
        [<ParamArrayAttribute>] handlers:HttpMessageHandler[] -> MobileServiceClient
Public Sub New (
    applicationUri As Uri,
    applicationKey As String,
    ParamArray handlers As HttpMessageHandler()
)

Parameters

  • applicationUri
    Type: System.Uri

    The URI for the 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