AzureTodo.TodoItemManager.TodoItemManager C# (CSharp) Метод

TodoItemManager() публичный Метод

public TodoItemManager ( ) : System
Результат 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