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