The return type of an async method must be void, Task or Task in C#

前端 未结 2 1605
逝去的感伤
逝去的感伤 2021-01-26 02:57

I have the following method and getting the following error. I wonder how could I able to overcome on this issue.

The return type of an async method must

2条回答
  •  一生所求
    2021-01-26 03:23

    The rule is simple: if your "regular" synchronous method would return T, your async method must return Task:

    private static async Task GoRequest(string url, Dictionary parameters, HttpMethod method,string body = "")
            where T : class
    

    You don't need to change anything else: when your async code returns a T, the compiler makes sure that the result is actually a Task.

    Note: Since your async method has no awaits in it, you might as well change it to a "regular", synchronous, method.

提交回复
热议问题