Open sharwell opened 8 years ago
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); }
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.