Implemented interface member:
property
CancellationToken
Microsoft.CodeAnalysis.CodeFixesAndRefactorings.IFixAllContext.CancellationToken
1 write to CancellationToken
Microsoft.CodeAnalysis.Workspaces (1)
CodeRefactorings\FixAllOccurences\FixAllContext.cs (1)
90this.CancellationToken = cancellationToken;
5 references to CancellationToken
Microsoft.CodeAnalysis.CSharp.Features (1)
CodeRefactorings\EnableNullable\EnableNullableCodeRefactoringProvider.FixAllProvider.cs (1)
49fixAllContext.GetOptionsProvider(), fixAllContext.CancellationToken).ConfigureAwait(false);
Microsoft.CodeAnalysis.Workspaces (4)
CodeRefactorings\FixAllOccurences\DocumentBasedFixAllProvider.cs (1)
93var cancellationToken = fixAllContext.CancellationToken;
CodeRefactorings\FixAllOccurences\FixAllContext.cs (2)
98if (this.CancellationToken == cancellationToken) 119return State == newState ? this : new FixAllContext(newState, ProgressTracker, CancellationToken);
CodeRefactorings\SyntaxEditorBasedCodeRefactoringProvider.cs (1)
34return await this.FixAllAsync(document, fixAllSpans, fixAllContext.GetOptionsProvider(), fixAllContext.CodeActionEquivalenceKey, fixAllContext.CancellationToken).ConfigureAwait(false);