1 write to State
Microsoft.CodeAnalysis.Workspaces (1)
CodeRefactorings\FixAllOccurences\RefactorAllContext.cs (1)
90State = state;
11 references to State
Microsoft.CodeAnalysis.Workspaces (11)
CodeRefactorings\FixAllOccurences\RefactorAllContext.cs (11)
26internal RefactorAllProvider RefactorAllProvider => State.FixAllProvider; 31public Document Document => State.Document!; 36public CodeRefactoringProvider CodeRefactoringProvider => State.Provider; 41public RefactorAllScope Scope => (RefactorAllScope)State.Scope; 47public string? CodeActionEquivalenceKey => State.CodeActionEquivalenceKey; 59public Project Project => State.Project; 64IRefactorOrFixAllState IRefactorOrFixAllContext.State => this.State; 76var newState = State.With(documentAndProject, scope, codeActionEquivalenceKey); 79return State == newState && CancellationToken == newCancellationToken 100=> State.GetRefactorAllSpansAsync(cancellationToken); 103=> FixAllHelper.GetDefaultFixAllTitle(this.Scope.ToFixAllScope(), this.State.CodeActionTitle, this.Document, this.Project);