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