You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 8, 2018. It is now read-only.
This diagnostic would be reported if a method M is called without providing a CancellationToken, and either M or one of its overloads has a CancellationToken parameter.
The code fix for this would attempt to fill in the CancellationToken as follows:
⚠️ Separate equivalence keys should be used for the code fix for the case where the updated call still calls the same method, and the case where the updated call is to a different overload of the method.
This diagnostic would be reported if a method M is called without providing a
CancellationToken, and either M or one of its overloads has aCancellationTokenparameter.The code fix for this would attempt to fill in the
CancellationTokenas follows:CancellationToken(with consideration for context objects as described in New rule proposal: Async methods should have a CancellationToken parameter #32), the innermost visibleCancellationTokenis passed.CancellationToken.None.