Implemented interface member:
property
CancellationToken
Microsoft.CodeAnalysis.CodeFixesAndRefactorings.IRefactorOrFixAllContext.CancellationToken
1 write to CancellationToken
Microsoft.CodeAnalysis.Workspaces (1)
CodeRefactorings\FixAllOccurences\RefactorAllContext.cs (1)
92this.CancellationToken = cancellationToken;
6 references to CancellationToken
Microsoft.CodeAnalysis.CSharp.Features (2)
CodeRefactorings\EnableNullable\EnableNullableCodeRefactoringProvider.FixAllProvider.cs (1)
48solution = await EnableNullableReferenceTypesAsync(project, purpose, fixAllContext.CancellationToken).ConfigureAwait(false);
ConvertToExtension\ConvertToExtensionFixAllProvider.cs (1)
33var cancellationToken = refactorAllContext.CancellationToken;
Microsoft.CodeAnalysis.Workspaces (4)
CodeRefactorings\FixAllOccurences\DocumentBasedRefactorAllProvider.cs (1)
89var cancellationToken = refactorAllContext.CancellationToken;
CodeRefactorings\FixAllOccurences\RefactorAllContext.cs (2)
77var newCancellationToken = cancellationToken.HasValue ? cancellationToken.Value : this.CancellationToken; 79return State == newState && CancellationToken == newCancellationToken
CodeRefactorings\SyntaxEditorBasedCodeRefactoringProvider.cs (1)
31await this.RefactorAllAsync(document, refactorAllSpans, refactorAllContext.CodeActionEquivalenceKey, refactorAllContext.CancellationToken).ConfigureAwait(false),