Skip to content

Instantly share code, notes, and snippets.

@amitapl
Created August 24, 2012 07:38
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 amitapl/3447179 to your computer and use it in GitHub Desktop.
Save amitapl/3447179 to your computer and use it in GitHub Desktop.
public static MobileServiceClient MobileService =
new MobileServiceClient(
"https://Your URL/",
"Your Application Key"
);
public MobileServiceClient BuildMobileServiceWithAdminAccess(string masterKey)
{
return App.MobileService.WithFilter(new AdminServiceFilter(true, masterKey));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment