Implemented interface member:
property
CancellationToken
Microsoft.CodeAnalysis.CodeFixesAndRefactorings.IFixAllContext.CancellationToken
1 write to CancellationToken
Microsoft.CodeAnalysis.Workspaces (1)
CodeRefactorings\FixAllOccurences\FixAllContext.cs (1)
89
this.
CancellationToken
= cancellationToken;
4 references to CancellationToken
Microsoft.CodeAnalysis.Workspaces (4)
CodeRefactorings\FixAllOccurences\DocumentBasedFixAllProvider.cs (1)
87
var cancellationToken = fixAllContext.
CancellationToken
;
CodeRefactorings\FixAllOccurences\FixAllContext.cs (2)
106
var newCancellationToken = cancellationToken.HasValue ? cancellationToken.Value : this.
CancellationToken
;
108
return State == newState &&
CancellationToken
== newCancellationToken
CodeRefactorings\SyntaxEditorBasedCodeRefactoringProvider.cs (1)
32
return await this.FixAllAsync(document, fixAllSpans, fixAllContext.CodeActionEquivalenceKey, fixAllContext.
CancellationToken
).ConfigureAwait(false);