I am trying to make a network call when a page is navigated to in windows phone 8.1 and then use the results to set the value of TextBlocks on the page but it seems to fail always.I have seen solutions which are not clear
async protected override void OnNavigatedTo(NavigationEventArgs e)
{
//Make the async call
Dictionary<string, string> result = await BoardService.getBoard((e.Parameter as Board).id);
//use the results to set the text of the TextBlock
txtBlockDesc.Text = result[Constants.SUCCESS];
}
Any assistance will be appreciated.