AzureTodo.TodoItemManager.TodoItemManager C# (CSharp) Méthode

TodoItemManager() public méthode

public TodoItemManager ( ) : System
Résultat System
		public TodoItemManager ()
		{
			// Establish a link to Azure
			client = new MobileServiceClient (
				Constants.ApplicationURL		// Azure no longer requires an Application Key
			);

			// Read any existing todo items from the Azure client
			todoTable = client.GetTable<TodoItem> ();
		}
		#endregion