2 overrides of FixAllAsync
Microsoft.CodeAnalysis.CSharp.Features (1)
ConvertToExtension\ConvertToExtensionFixAllProvider.cs (1)
28protected override async Task<Document?> FixAllAsync(
Microsoft.CodeAnalysis.Workspaces (1)
CodeRefactorings\FixAllOccurences\FixAllProvider.cs (1)
103protected 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. 98var newDocument = await this.FixAllAsync(fixAllContext, document, spans).ConfigureAwait(false);