1 override of FixAllAsync
Microsoft.CodeAnalysis.Workspaces (1)
CodeRefactorings\FixAllOccurences\FixAllProvider.cs (1)
106
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)
27
/// <see cref="
FixAllAsync
(FixAllContext, Document, Optional{ImmutableArray{TextSpan}})"/> is invoked for each document for implementors to process.
107
var newDocument = await this.
FixAllAsync
(fixAllContext, document, spans).ConfigureAwait(false);