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