16 references to FixAllProvider
Microsoft.CodeAnalysis.Workspaces (16)
CodeFixesAndRefactorings\FixAllProviderInfo.cs (1)
78var fixAllProvider = provider.GetFixAllProvider();
CodeRefactorings\CodeRefactoringProvider.cs (2)
26/// Gets an optional <see cref="FixAllProvider"/> that can apply multiple occurrences of code refactoring(s) 33internal virtual FixAllProvider? GetFixAllProvider()
CodeRefactorings\FixAllOccurences\DocumentBasedFixAllProvider.cs (2)
19/// Provides a base class to write a <see cref="FixAllProvider"/> for refactorings that fixes documents independently. 29internal abstract class DocumentBasedFixAllProvider(ImmutableArray<FixAllScope> supportedFixAllScopes) : FixAllProvider
CodeRefactorings\FixAllOccurences\FixAllContext.cs (1)
26internal FixAllProvider FixAllProvider => State.FixAllProvider;
CodeRefactorings\FixAllOccurences\FixAllProvider.cs (4)
48/// Create a <see cref="FixAllProvider"/> that fixes documents independently. 58public static FixAllProvider Create(Func<FixAllContext, Document, Optional<ImmutableArray<TextSpan>>, Task<Document?>> fixAllAsync) 62/// Create a <see cref="FixAllProvider"/> that fixes documents independently. 77public static FixAllProvider Create(
CodeRefactorings\FixAllOccurences\FixAllState.cs (4)
20internal sealed class FixAllState : CommonFixAllState<CodeRefactoringProvider, FixAllProvider, FixAllState> 35FixAllProvider fixAllProvider, 47FixAllProvider fixAllProvider, 59FixAllProvider fixAllProvider,
CodeRefactorings\SyntaxEditorBasedCodeRefactoringProvider.cs (2)
24internal sealed override FixAllProvider? GetFixAllProvider() 29return FixAllProvider.Create(