This repository was archived by the owner on Nov 8, 2018. It is now read-only.
  
  
  
  
  
Description
Currently the analyzer does not check for an overload that takes a cancellation token. For example, the following interface would result in a diagnostic being reported, but it shouldn't.
interface InterfaceName
{
  Task MethodAsync();
  Task MethodAsync(CancellationToken cancellationToken);
}