1 write to State
Microsoft.CodeAnalysis.Workspaces (1)
CodeRefactorings\FixAllOccurences\FixAllContext.cs (1)
88State = state;
12 references to State
Microsoft.CodeAnalysis.Workspaces (12)
CodeRefactorings\FixAllOccurences\FixAllContext.cs (12)
26internal FixAllProvider FixAllProvider => State.FixAllProvider; 31public Document Document => State.Document!; 36public CodeRefactoringProvider CodeRefactoringProvider => State.Provider; 41public FixAllScope Scope => State.Scope; 46public string? CodeActionEquivalenceKey => State.CodeActionEquivalenceKey; 61public Project Project => State.Project; 66IFixAllState IFixAllContext.State => this.State; 103return new FixAllContext(State, this.ProgressTracker, cancellationToken); 111=> State.GetFixAllSpansAsync(cancellationToken); 118var newState = State.With(documentAndProject, scope, codeActionEquivalenceKey); 119return State == newState ? this : new FixAllContext(newState, ProgressTracker, CancellationToken); 123=> FixAllHelper.GetDefaultFixAllTitle(this.Scope, this.State.CodeActionTitle, this.Document, this.Project);