private async Task LoadDataAsync(){
			//TODO: Step 6 - Android - Call the services using async and update the UI with the results
	        var restClient = new Core.Client.RestClient ();
	        var serverData = await restClient.GetDataAsync();

	        adapter.ReloadData(serverData);
        }
        private async Task LoadDataAsync()
        {
            //TODO: Step 6 - Android - Call the services using async and update the UI with the results
            var restClient = new Core.Client.RestClient();
            var serverData = await restClient.GetDataAsync();

            adapter.ReloadData(serverData);
        }
Example #3
0
        private async Task LoadDataAsync()
        {
            //TODO: Step 6 - iOS - Call the services using async and update the UI with the results
            var soapClient = new Core.Client.RestClient();
            var serverData = await soapClient.GetDataAsync();

            tableViewSource.ReloadData(TableView, serverData);
        }
		private async Task LoadDataAsync(){
			//TODO: Step 6 - iOS - Call the services using async and update the UI with the results
			var soapClient = new Core.Client.RestClient ();
		    var serverData = await soapClient.GetDataAsync();
		    tableViewSource.ReloadData(TableView, serverData);
		}