我有一种情况,我正在async
调用一个返回和IDisposable
实例的方法。例如:
HttpResponseMessage response = await httpClient.GetAsync(new Uri("http://www.google.com"));
现在之前async
在现场,当使用一个IDisposable
实例时,这个调用和使用“response”变量的代码将被包装在一个 using 语句中。
async
我的问题是,当关键字混在一起时,这是否仍然是正确的方法?即使代码编译了,在下面的两个示例中,using 语句是否仍能按预期工作?
示例 1
using(HttpResponseMessage response = await httpClient.GetAsync(new Uri("http://www.google.com")))
{
// Do something with the response
return true;
}
示例 2
using(HttpResponseMessage response = await httpClient.GetAsync(new Uri("http://www.google.com")))
{
await this.responseLogger.LogResponseAsync(response);
return true;
}