1 implementation of Scope
Microsoft.CodeAnalysis.Workspaces (1)
CodeFixesAndRefactorings\CommonFixAllState.cs (1)
24
public FixAllScope
Scope
{ get; }
8 references to Scope
Microsoft.CodeAnalysis.Features (3)
CodeFixesAndRefactorings\AbstractFixAllCodeAction.cs (2)
56
=> title ?? (this.RefactorOrFixAllState.
Scope
switch
63
_ => throw ExceptionUtilities.UnexpectedValue(this.RefactorOrFixAllState.
Scope
),
CodeFixesAndRefactorings\AbstractFixAllGetFixesService.cs (1)
171
m[FixAllLogger.FixAllScope] = fixAllContext.State.
Scope
.ToString();
Microsoft.CodeAnalysis.Workspaces (5)
CodeFixesAndRefactorings\DefaultFixAllProviderHelpers.cs (2)
34
var solution = fixAllContext.State.
Scope
switch
40
_ => throw ExceptionUtilities.UnexpectedValue(fixAllContext.State.
Scope
),
CodeFixesAndRefactorings\DocumentBasedFixAllProviderHelpers.cs (1)
77
fixAllContext.State.
Scope
is FixAllScope.Document or FixAllScope.Project or FixAllScope.ContainingMember or FixAllScope.ContainingType);
CodeFixesAndRefactorings\FixAllLogger.cs (2)
78
m[FixAllScope] = fixAllState.
Scope
.ToString();
79
switch (fixAllState.
Scope
)