Skip to content

Instantly share code, notes, and snippets.

@nickharris
Last active December 13, 2015 17:39
Show Gist options
  • Save nickharris/4949948 to your computer and use it in GitHub Desktop.
Save nickharris/4949948 to your computer and use it in GitHub Desktop.
create MobileServiceClient instance
using Microsoft.WindowsAzure.MobileServices;
namespace SensorDemoMobileServices
{
public partial class Program
{
//TODO: add your mobile service URI and app key below from the Windows Azure Portal https://manage.windowsazure.com
public static MobileServiceClient MobileService = new MobileServiceClient(
new Uri("http://<your Windows Azure Mobile Service subdomain >.azure-mobile.net/"),
"<your Windows Azure Mobile Service App Key> "
);
....
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment