gpt4 book ai didi

c# - Windows Phone Web 访问 API 中的异步等待

转载 作者:太空狗 更新时间:2023-10-29 22:04:13 24 4
gpt4 key购买 nike

WP8 是否支持异步/等待模式?

我需要从基于网络的 API 获取 XML,但看起来 WebClientWebRequest 不支持它。

在 WP8 BCL 中是否有支持 async/await 可用于 Web 访问的类?如果没有,是否有我可以使用的图书馆?

我知道创建包装器来支持它并不难,但这似乎应该包含在 SDK 中。

最佳答案

Are there classes that support async/await usable for web access in the WP8 BCL?

这是在 WP8 SDK 内测期间提出的一个问题,所以很遗憾,我可以回答说,没有。

但是正如您所提到的,制作您自己的包装器相当容易。

例如:

public static class Extensions
{
public static Task<string> DownloadStringTask(this WebClient webClient, Uri uri)
{
var tcs = new TaskCompletionSource<string>();

webClient.DownloadStringCompleted += (s, e) =>
{
if (e.Error != null)
{
tcs.SetException(e.Error);
}
else
{
tcs.SetResult(e.Result);
}
};

webClient.DownloadStringAsync(uri);

return tcs.Task;
}
}

关于c# - Windows Phone Web 访问 API 中的异步等待,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13173614/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com