常规迭代器块(即“yield return”)是否与“async”和“await”不兼容?
这很好地了解了我正在尝试做的事情:
async Task<IEnumerable<Foo>> Method(String [] Strs)
{
// I want to compose the single result to the final result, so I use the SelectMany
var finalResult = UrlStrings.SelectMany(link => //i have an Urlstring Collection
await UrlString.DownLoadHtmlAsync() //download single result; DownLoadHtmlAsync method will Download the url's html code
);
return finalResult;
}
但是,我收到一个编译器错误,引用“无法从资源加载消息字符串”。
这是另一个尝试:
async Task<IEnumerable<Foo>> Method(String [] Strs)
{
foreach(var str in strs)
{
yield return await DoSomethingAsync( str)
}
}
但同样,编译器返回错误:“无法从资源加载消息字符串”。
这是我项目中的真实编程代码
当我有一个列表任务时,这非常有用,该任务可以从 URL 下载 HTML,我使用语法“yield return await task”,结果就是我想要的IEnumerable<Foo>
。我不想写这段代码:
async Task<IEnumerable<String>> DownLoadAllURL(String [] Strs)
{
List<Foo> htmls= new ...
foreach(var str in strs)
{
var html= await DownLoadHtmlAsync( str)
htmls.Add(item)
}
return htmls;
}
但似乎我必须这样做。
谢谢你的帮助。