Skip to content

Instantly share code, notes, and snippets.

@christopherhouse
Created April 30, 2013 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save christopherhouse/5489078 to your computer and use it in GitHub Desktop.
Save christopherhouse/5489078 to your computer and use it in GitHub Desktop.
Demonstrates creating an Azure MobileServiceClient instance.
const string applicationKey = "[Insert Your Azure Mobile Service Application Key Here]";
const string applicationUrl = "[Insert Your Azure Mobile Service URL Here]";
private readonly MobileServiceClient client = new MobileServiceClient(applicationUrl, applicationKey);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment