如何删除StyleCop警告“此异步方法缺少'await'运算符,将同步运行”,而不会从签名中删除异步

时间:2019-02-22 16:47:02

标签: c# asynchronous async-await stylecop

父对象,大多数子对象具有异步功能,并使用await。 StyleCop正在观察,并针对一个儿童班缺乏等待的情况提出建议。

当您无法删除异步签名时,使StyleCop开心的最佳方法是什么?

例如:

class Program
{
  static void Main(string[] args)
  {
     var t = DownloadSomethingAsync();

     Console.WriteLine(t.Result);
  }

  public delegate Task<string> TheDelegate(string page);

  static async Task<string> DownloadSomethingAsync()
  {
     string page = "http://en.wikipedia.org/";

     var content = await GetPageContentAsync(page);

     return content;
  }

  static async Task<string> GetPageContentAsync(string page)
  {
     string result;

     TheDelegate getContent = GetNotOrgContentAsync;
     if (page.EndsWith(".org"))
     {
        getContent = GetOrgContentAsync;
     }

     result = await getContent(page);

     return result;
  }

  static async Task<string> GetOrgContentAsync(string page)
  {
     string result;

     using (HttpClient client = new HttpClient())
     using (HttpResponseMessage response = await client.GetAsync(page))
     using (HttpContent content = response.Content)
     {
        result = await content.ReadAsStringAsync();
     }

     return result;
  }

  static async Task<string> GetNotOrgContentAsync(string page)
  {
      return await Task.FromResult("Do not crawl these");
      // removing async will cause "Cannot implicitly convert type 'string' to 'System.Threading.Tasks.Task<string>'
  }

}

找到了解决方案-为谷歌搜索创建此解决方案。

您还可以使用此处提到的警告抑制功能:Suppress warning from empty async method

//编辑以消除有关日志记录的争论,该问题与任何问题都无关,仅是示例。

//编辑以强制执行异步操作,因为这会使人们感到困惑

2 个答案:

答案 0 :(得分:5)

如果您没有await,则只需从方法声明中删除async关键字并返回Task.CompletedTask

public override Task DoMyThing()
{
    // ..
    return Task.CompletedTask; // or Task.FromResult(0); in pre .NET Framework 4.6
}

因为基类中的虚方法标记为async并不意味着也需要将覆盖标记为asyncasync关键字不是方法签名的一部分。

答案 1 :(得分:0)

选项:

在异步函数中添加一些代码:

return await Task.FromResult("Do not crawl these");

取消整个项目:

#pragma warning disable 1998

或抑制一种方法:

#pragma warning disable 1998
async Task Foo() {}
#pragma warning restore 1998