Implemented interface member:
property
FixAllState
Microsoft.CodeAnalysis.UnifiedSuggestions.UnifiedSuggestedActions.IFixAllCodeFixSuggestedAction.FixAllState
1 write to FixAllState
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Features\UnifiedSuggestions\UnifiedSuggestedActions\UnifiedFixAllCodeFixSuggestedAction.cs (1)
30FixAllState = fixAllState;
4 references to FixAllState
Microsoft.CodeAnalysis.EditorFeatures (1)
Suggestions\SuggestedActionsSource_Async.cs (1)
304fixAllAction.FixAllState, fixAllAction.Diagnostic, fixAllAction.OriginalCodeAction),
Microsoft.CodeAnalysis.LanguageServer.Protocol (3)
Handler\CodeActions\CodeActionHelpers.cs (3)
201var fixAllFlavors = unifiedCodeFixSuggestedAction.FixAllFlavors.Actions.OfType<UnifiedFixAllCodeFixSuggestedAction>().Select(action => action.FixAllState.Scope.ToString()); 384var fixAllFlavor = unifiedCodeFixSuggestedAction.FixAllFlavors.Actions.OfType<UnifiedFixAllCodeFixSuggestedAction>().Where(action => action.FixAllState.Scope.ToString() == fixAllScope).First(); 385codeActions.Add(new FixAllCodeAction(codeAction.Title, fixAllFlavor.FixAllState, showPreviewChangesDialog: false));