Implemented interface member:
property
Document
Microsoft.CodeAnalysis.CodeFixesAndRefactorings.IFixAllState.Document
1 write to Document
Microsoft.CodeAnalysis.Workspaces (1)
CodeFixesAndRefactorings\CommonFixAllState.cs (1)
39
Document
= document;
10 references to Document
Microsoft.CodeAnalysis.Features (1)
CodeFixes\Suppression\AbstractSuppressionBatchFixAllProvider.cs (1)
253
=> FixAllHelper.GetDefaultFixAllTitle(fixAllState.Scope, title: fixAllState.DiagnosticIds.First(), fixAllState.
Document
!, fixAllState.Project);
Microsoft.CodeAnalysis.Workspaces (9)
CodeFixes\FixAllOccurrences\FixAllContext.cs (1)
41
public Document? Document => State.
Document
;
CodeFixesAndRefactorings\CommonFixAllState.cs (2)
54
var (newDocument, newProject) = documentAndProject.HasValue ? documentAndProject.Value : (
Document
, Project);
58
if (newDocument ==
Document
&&
CodeRefactorings\FixAllOccurences\FixAllContext.cs (1)
31
public Document Document => State.
Document
!;
CodeRefactorings\FixAllOccurences\FixAllState.cs (5)
101
Contract.ThrowIfNull(
Document
);
102
var spanMappingService =
Document
.GetLanguageService<IFixAllSpanMappingService>();
107
Document
, _selectionSpan, Scope, cancellationToken).ConfigureAwait(false);
112
Contract.ThrowIfNull(
Document
);
113
documentsToFix = SpecializedCollections.SingletonEnumerable(
Document
);