本文整理汇总了C#中LiveConnectClient.DownloadAsync方法的典型用法代码示例。如果您正苦于以下问题:C# LiveConnectClient.DownloadAsync方法的具体用法?C# LiveConnectClient.DownloadAsync怎么用?C# LiveConnectClient.DownloadAsync使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类LiveConnectClient
的用法示例。
在下文中一共展示了LiveConnectClient.DownloadAsync方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetProfileImageData
private async Task<byte[]> GetProfileImageData(LiveConnectClient client)
{
byte[] imgData = null;
try
{
LiveDownloadOperationResult meImgResult = await client.DownloadAsync("me/picture");
imgData = new byte[meImgResult.Stream.Length];
await meImgResult.Stream.ReadAsync(imgData, 0, imgData.Length);
}
catch
{
// Failed to download image data.
}
return imgData;
}
示例2: DownloadFileHelper
private static void DownloadFileHelper(object sender, LiveOperationCompletedEventArgs e)
{
string clientDirectory = "C:\\UltiDrive\\";
indexEntities db = new indexEntities();
string guidToDownload = (string)guidToDownloadQueue.Dequeue();
var request = from f in db.files
where f.guid == guidToDownload
select f.origFileName;
string originalPath = request.First().ToString();
string originalFileName = originalPath.Split('\\').Last();
try
{
JavaScriptSerializer ser = new JavaScriptSerializer();
Files.RootObject data = ser.Deserialize<Files.RootObject>(e.RawResult);
foreach (Files.Datum listItem in data.data)
{
if (listItem.name == guidToDownload)
{
LiveConnectClient client = new LiveConnectClient(Properties.session);
client.DownloadCompleted += UltiDrive.SkyDrive.Utilities.ConnectClient_DownloadCompleted;
string path = clientDirectory + originalFileName;
client.DownloadAsync(listItem.id + "/content", path);
}
}
}
catch (Exception ex)
{
Console.WriteLine("SkyDriveApi.DownloadFile() failed. --> " + ex.ToString());
}
}