Implemented interface member:
property
CancellationToken
Microsoft.CodeAnalysis.CodeFixesAndRefactorings.IFixAllContext.CancellationToken
1 write to CancellationToken
Microsoft.CodeAnalysis.Workspaces (1)
CodeRefactorings\FixAllOccurences\FixAllContext.cs (1)
87this.CancellationToken = cancellationToken;
6 references to CancellationToken
Microsoft.CodeAnalysis.CSharp.Features (2)
CodeRefactorings\EnableNullable\EnableNullableCodeRefactoringProvider.FixAllProvider.cs (1)
49solution = await EnableNullableReferenceTypesAsync(project, purpose, fixAllContext.CancellationToken).ConfigureAwait(false);
ConvertToExtension\ConvertToExtensionFixAllProvider.cs (1)
33var cancellationToken = fixAllContext.CancellationToken;
Microsoft.CodeAnalysis.Workspaces (4)
CodeRefactorings\FixAllOccurences\DocumentBasedFixAllProvider.cs (1)
87var cancellationToken = fixAllContext.CancellationToken;
CodeRefactorings\FixAllOccurences\FixAllContext.cs (2)
104var newCancellationToken = cancellationToken.HasValue ? cancellationToken.Value : this.CancellationToken; 106return State == newState && CancellationToken == newCancellationToken
CodeRefactorings\SyntaxEditorBasedCodeRefactoringProvider.cs (1)
32await this.FixAllAsync(document, fixAllSpans, fixAllContext.CodeActionEquivalenceKey, fixAllContext.CancellationToken).ConfigureAwait(false),