1 implementation of IRefactorOrFixAllState
Microsoft.CodeAnalysis.Workspaces (1)
CodeFixesAndRefactorings\CommonFixAllState.cs (1)
12: IRefactorOrFixAllState
21 references to IRefactorOrFixAllState
Microsoft.CodeAnalysis.EditorFeatures (1)
Suggestions\SuggestedActions\EditorSuggestedActionForRefactorOrFixAll.cs (1)
25IRefactorOrFixAllState fixAllState,
Microsoft.CodeAnalysis.Features (6)
CodeFixesAndRefactorings\AbstractFixAllCodeAction.cs (5)
24IRefactorOrFixAllState refactorOrFixAllState, 37public IRefactorOrFixAllState RefactorOrFixAllState { get; } = refactorOrFixAllState; 45private static IRefactorOrFixAllContext CreateFixAllContext(IRefactorOrFixAllState state, IProgress<CodeAnalysisProgress> progressTracker, CancellationToken cancellationToken) 97/// Determine if the <see cref="IRefactorOrFixAllState.Provider"/> is an internal first-party provider or not. 99private static bool IsInternalProvider(IRefactorOrFixAllState fixAllState)
CodeFixesAndRefactorings\AbstractFixAllGetFixesService.cs (1)
54IRefactorOrFixAllState fixAllState,
Microsoft.CodeAnalysis.LanguageServer.Protocol (5)
Features\Suggestions\SuggestedAction.cs (3)
68public IRefactorOrFixAllState? RefactorOrFixAllState { get; } 78IRefactorOrFixAllState? refactorOrFixAllState) 118IRefactorOrFixAllState refactorOrFixAllState)
Features\Suggestions\UnifiedSuggestedActionsSource.cs (2)
205IRefactorOrFixAllState? fixAllState, 242var fixAllStateForScope = fixAllState.With(scope: scope, codeActionEquivalenceKey: action.EquivalenceKey);
Microsoft.CodeAnalysis.Workspaces (9)
CodeFixes\FixAllOccurrences\FixAllContext.cs (1)
74IRefactorOrFixAllState IRefactorOrFixAllContext.State => this.State;
CodeFixesAndRefactorings\CommonFixAllState.cs (4)
68IRefactorOrFixAllProvider IRefactorOrFixAllState.FixAllProvider => this.FixAllProvider; 70IRefactorOrFixProvider IRefactorOrFixAllState.Provider => this.Provider; 72IRefactorOrFixAllState IRefactorOrFixAllState.With(
CodeFixesAndRefactorings\FixAllLogger.cs (1)
41public static void LogState(IRefactorOrFixAllState fixAllState, bool isInternalProvider)
CodeFixesAndRefactorings\IRefactorOrFixAllContext.cs (1)
17IRefactorOrFixAllState State { get; }
CodeFixesAndRefactorings\IRefactorOrFixAllState.cs (1)
29IRefactorOrFixAllState With(
CodeRefactorings\FixAllOccurences\RefactorAllContext.cs (1)
64IRefactorOrFixAllState IRefactorOrFixAllContext.State => this.State;