Await on the last method line

萝らか妹 提交于 2019-12-03 01:50:13

There actually is a "method remainder" - it completes the Task returned by MethodAsync.

(The return value of) Method02Async is awaited so that MethodAsync is not completed until Method02Async completes.

If you had:

public async Task MethodAsync()
{
  await Method01Async();
  Method02Async();
}

Then the MethodAsync will (asynchronously) wait for Method01Async to complete and then start Method02Async. MethodAsync will then complete while Method02Async may still be in progress.

The way you have it:

public async Task MethodAsync()
{
  await Method01Async();
  await Method02Async();
}

Means that MethodAsync will (asynchronously) wait for Method01Async to complete and then (asynchronously) wait for Method02Async to complete, and only then will MethodAsync complete.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!