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?