WP8, VS 2013 Live SDK (nuget) v5.5
private async void DownLoadImageFromSkyDrive(string imgUrl, Int32 number)
{
LiveConnectClient client = new LiveConnectClient(_currentSession);
var image = await client.DownloadAsync(imgUrl + "/content");
BitmapImage bitmap = new BitmapImage();
bitmap.SetSource(image.Stream);
}
After the execution of
var image = await client.DownloadAsync(imgUrl + "/content");
The callstack is in the parent function. There's no exception, but
BitmapImage bitmap = new BitmapImage();
is not executed. The code has worked....