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
You need to wrap your return type in a Task.
private static async Task GoRequest(string url, Dictionary parameters, HttpMethod method, string body = "") where T : object