As the error says, async methods return Task
,Task<T>
or void
. So to get this to work you can:
Func<Task<HttpResponseMessage>> myFun = async () => await myTask;
As the error says, async methods return Task
,Task<T>
or void
. So to get this to work you can:
Func<Task<HttpResponseMessage>> myFun = async () => await myTask;