2 implementations of IFixAllProvider
Microsoft.CodeAnalysis.Workspaces (2)
CodeFixes\FixAllOccurrences\FixAllProvider.cs (1)
19public abstract class FixAllProvider : IFixAllProvider
CodeRefactorings\FixAllOccurences\FixAllProvider.cs (1)
22internal abstract class FixAllProvider : IFixAllProvider
11 references to IFixAllProvider
Microsoft.CodeAnalysis.Workspaces (11)
CodeFixes\FixAllOccurrences\FixAllProvider.cs (2)
27CodeActionCleanup IFixAllProvider.Cleanup => this.Cleanup; 99Task<CodeAction?> IFixAllProvider.GetFixAsync(IFixAllContext fixAllContext)
CodeFixesAndRefactorings\CommonFixAllState.cs (2)
12where TFixAllProvider : IFixAllProvider 66IFixAllProvider IFixAllState.FixAllProvider => this.FixAllProvider!;
CodeFixesAndRefactorings\FixAllProviderInfo.cs (5)
20public readonly IFixAllProvider FixAllProvider; 24IFixAllProvider fixAllProvider, 117IFixAllProvider fixAllProvider, 126IFixAllProvider fixAllProvider, 137IFixAllProvider fixAllProvider,
CodeFixesAndRefactorings\IFixAllState.cs (1)
15IFixAllProvider FixAllProvider { get; }
CodeRefactorings\FixAllOccurences\FixAllProvider.cs (1)
38Task<CodeAction?> IFixAllProvider.GetFixAsync(IFixAllContext fixAllContext)