0

I am writing a Universal App with VS2013 update 2. But it looks like DownloadAsync was deprecated as I get the compile error: Microsoft.Live.LiveConnectClient' does not contain a definition for 'DownloadAsync'

LiveConnectClient clientLocal = new LiveConnectClient(client.Session);
var downloadResult = await clientLocal.DownloadAsync(string.Format("{0}/content", folderId));

A recent solution had me try that code so it must have worked in VS2012?? See link: OneDrive Upload/Download to Specified Directory

Any working examples using the latest VS2013 and Microsoft.Live?

Community
  • 1
  • 1
ezaspi
  • 684
  • 7
  • 25

1 Answers1

0

For LiveConnect SDK 5.6 WinRT WP8.1 DownloadAsync is not available. I went with the solution at: Returned value is null when downloading a file from OneDrive

Community
  • 1
  • 1
ezaspi
  • 684
  • 7
  • 25