2 implementations of State
Microsoft.CodeAnalysis.Workspaces (2)
CodeFixes\FixAllOccurrences\FixAllContext.cs (1)
73IFixAllState IFixAllContext.State => this.State;
CodeRefactorings\FixAllOccurences\FixAllContext.cs (1)
66IFixAllState IFixAllContext.State => this.State;
16 references to State
Microsoft.CodeAnalysis.EditorFeatures.Cocoa (7)
FixAllGetFixesService.cs (7)
58codeAction, showPreviewChangesDialog, fixAllContext.ProgressTracker, fixAllContext.State, fixAllContext.CancellationToken).ConfigureAwait(false); 63var fixAllKind = fixAllContext.State.FixAllKind; 75m[FixAllLogger.CorrelationId] = fixAllContext.State.CorrelationId; 76m[FixAllLogger.FixAllScope] = fixAllContext.State.Scope.ToString(); 87FixAllLogger.LogComputationResult(fixAllKind, fixAllContext.State.CorrelationId, completed: false); 93FixAllLogger.LogComputationResult(fixAllKind, fixAllContext.State.CorrelationId, completed: true); 97FixAllLogger.LogComputationResult(fixAllKind, fixAllContext.State.CorrelationId, completed: false, timedOut: true);
Microsoft.CodeAnalysis.EditorFeatures.Wpf (7)
Suggestions\FixAll\FixAllGetFixesService.cs (7)
58codeAction, showPreviewChangesDialog, fixAllContext.ProgressTracker, fixAllContext.State, fixAllContext.CancellationToken).ConfigureAwait(false); 63var fixAllKind = fixAllContext.State.FixAllKind; 75m[FixAllLogger.CorrelationId] = fixAllContext.State.CorrelationId; 76m[FixAllLogger.FixAllScope] = fixAllContext.State.Scope.ToString(); 87FixAllLogger.LogComputationResult(fixAllKind, fixAllContext.State.CorrelationId, completed: false); 93FixAllLogger.LogComputationResult(fixAllKind, fixAllContext.State.CorrelationId, completed: true); 97FixAllLogger.LogComputationResult(fixAllKind, fixAllContext.State.CorrelationId, completed: false, timedOut: true);
Microsoft.CodeAnalysis.Workspaces (2)
CodeActionOptions.cs (1)
173=> context.State.CodeActionOptionsProvider;
CodeFixesAndRefactorings\DocumentBasedFixAllProviderHelpers.cs (1)
39var fixAllKind = originalFixAllContext.State.FixAllKind;