2 overrides of FixAllAsync
Microsoft.CodeAnalysis.Analyzers (1)
MetaAnalyzers\Fixers\PreferIsKindFix.cs (1)
63protected override async Task<Document?> FixAllAsync(FixAllContext fixAllContext, Document document, ImmutableArray<Diagnostic> diagnostics)
Microsoft.CodeAnalysis.Workspaces (1)
CodeFixes\FixAllOccurrences\FixAllProvider.cs (1)
102protected override Task<Document?> FixAllAsync(FixAllContext context, Document document, ImmutableArray<Diagnostic> diagnostics)
2 references to FixAllAsync
Microsoft.CodeAnalysis.Workspaces (2)
CodeFixes\FixAllOccurrences\DocumentBasedFixAllProvider.cs (2)
26/// cref="FixAllAsync(FixAllContext, Document, ImmutableArray{Diagnostic})"/> for implementors to process. 94var newDocument = await this.FixAllAsync(fixAllContext, document, documentDiagnostics).ConfigureAwait(false);