1 override of FixAllAsync
Microsoft.CodeAnalysis.Workspaces (1)
CodeRefactorings\FixAllOccurences\FixAllProvider.cs (1)
97
protected override Task<Document?>
FixAllAsync
(FixAllContext context, Document document, Optional<ImmutableArray<TextSpan>> fixAllSpans)
2 references to FixAllAsync
Microsoft.CodeAnalysis.Workspaces (2)
CodeRefactorings\FixAllOccurences\DocumentBasedFixAllProvider.cs (2)
25
/// <see cref="
FixAllAsync
(FixAllContext, Document, Optional{ImmutableArray{TextSpan}})"/> is invoked for each document for implementors to process.
98
var newDocument = await this.
FixAllAsync
(fixAllContext, document, spans).ConfigureAwait(false);