1 implementation of IFixAllState
Microsoft.CodeAnalysis.Workspaces (1)
CodeFixesAndRefactorings\CommonFixAllState.cs (1)
12internal abstract partial class CommonFixAllState<TProvider, TFixAllProvider, TFixAllState> : IFixAllState
45 references to IFixAllState
Microsoft.CodeAnalysis.CodeStyle.Fixes (2)
SyntaxEditorBasedCodeFixProvider.cs (2)
111/// (for example if the <see cref="IFixAllState.CodeActionEquivalenceKey"/> is used. 132/// is needed (for example <see cref="IFixAllState.CodeActionEquivalenceKey"/>), then <see
Microsoft.CodeAnalysis.EditorFeatures.Cocoa (6)
AbstractFixAllSuggestedAction.cs (2)
25public IFixAllState FixAllState { get; } 33IFixAllState fixAllState,
FixAllCodeFixSuggestedAction.cs (1)
30IFixAllState fixAllState,
FixAllCodeFixSuggestedAction.FixAllCodeAction.cs (1)
14public FixAllCodeAction(IFixAllState fixAllState)
FixAllCodeRefactoringSuggestedAction.cs (1)
26IFixAllState fixAllState,
FixAllGetFixesService.cs (1)
109IFixAllState fixAllState,
Microsoft.CodeAnalysis.EditorFeatures.Wpf (6)
Suggestions\FixAll\FixAllGetFixesService.cs (1)
109IFixAllState fixAllState,
Suggestions\SuggestedActions\AbstractFixAllSuggestedAction.cs (2)
25public IFixAllState FixAllState { get; } 33IFixAllState fixAllState,
Suggestions\SuggestedActions\FixAllCodeFixSuggestedAction.cs (1)
30IFixAllState fixAllState,
Suggestions\SuggestedActions\FixAllCodeFixSuggestedAction.FixAllCodeAction.cs (1)
14public FixAllCodeAction(IFixAllState fixAllState)
Suggestions\SuggestedActions\FixAllCodeRefactoringSuggestedAction.cs (1)
26IFixAllState fixAllState,
Microsoft.CodeAnalysis.Features (12)
CodeFixes\FixAllOccurrences\AbstractFixAllCodeFixCodeAction.cs (3)
22IFixAllState fixAllState, bool showPreviewChangesDialog) 27protected override IFixAllContext CreateFixAllContext(IFixAllState fixAllState, IProgressTracker progressTracker, CancellationToken cancellationToken) 30protected override bool IsInternalProvider(IFixAllState fixAllState)
CodeFixes\FixAllOccurrences\FixMultipleCodeAction.cs (1)
17IFixAllState fixAllState,
CodeFixesAndRefactorings\AbstractFixAllCodeAction.cs (5)
24public IFixAllState FixAllState { get; } 27IFixAllState fixAllState, bool showPreviewChangesDialog) 34/// Determine if the <see cref="IFixAllState.Provider"/> is an internal first-party provider or not. 36protected abstract bool IsInternalProvider(IFixAllState fixAllState); 41protected abstract IFixAllContext CreateFixAllContext(IFixAllState fixAllState, IProgressTracker progressTracker, CancellationToken cancellationToken);
CodeRefactorings\FixAllOccurences\FixAllCodeRefactoringCodeAction.cs (3)
16public FixAllCodeRefactoringCodeAction(IFixAllState fixAllState) 21protected override IFixAllContext CreateFixAllContext(IFixAllState fixAllState, IProgressTracker progressTracker, CancellationToken cancellationToken) 24protected override bool IsInternalProvider(IFixAllState fixAllState)
Microsoft.CodeAnalysis.LanguageServer.Protocol (8)
Features\UnifiedSuggestions\UnifiedSuggestedActions\IFixAllCodeFixSuggestedAction.cs (1)
20IFixAllState FixAllState { get; }
Features\UnifiedSuggestions\UnifiedSuggestedActions\IFixAllCodeRefactoringSuggestedAction.cs (1)
18IFixAllState FixAllState { get; }
Features\UnifiedSuggestions\UnifiedSuggestedActions\UnifiedFixAllCodeFixSuggestedAction.cs (2)
20public IFixAllState FixAllState { get; } 26IFixAllState fixAllState,
Features\UnifiedSuggestions\UnifiedSuggestedActions\UnifiedFixAllCodeRefactoringSuggestedAction.cs (2)
18public IFixAllState FixAllState { get; } 24IFixAllState fixAllState)
Features\UnifiedSuggestions\UnifiedSuggestedActionsSource.cs (2)
214IFixAllState fixAllState, 254var fixAllStateForScope = fixAllState.With(scope: scope, codeActionEquivalenceKey: action.EquivalenceKey);
Microsoft.CodeAnalysis.Workspaces (11)
CodeFixes\FixAllOccurrences\FixAllContext.cs (1)
73IFixAllState IFixAllContext.State => this.State;
CodeFixesAndRefactorings\CommonFixAllState.cs (4)
70IFixAllProvider IFixAllState.FixAllProvider => this.FixAllProvider!; 72object IFixAllState.Provider => this.Provider!; 74IFixAllState IFixAllState.With(
CodeFixesAndRefactorings\FixAllLogger.cs (1)
42public static void LogState(IFixAllState fixAllState, bool isInternalProvider)
CodeFixesAndRefactorings\IFixAllContext.cs (1)
18IFixAllState State { get; }
CodeFixesAndRefactorings\IFixAllState.cs (1)
33IFixAllState With(
CodeRefactorings\FixAllOccurences\FixAllContext.cs (1)
66IFixAllState IFixAllContext.State => this.State;
SyntaxEditorBasedCodeFixProvider.cs (2)
111/// (for example if the <see cref="IFixAllState.CodeActionEquivalenceKey"/> is used. 132/// is needed (for example <see cref="IFixAllState.CodeActionEquivalenceKey"/>), then <see