Implemented interface member:
property
Document
Microsoft.CodeAnalysis.CodeFixesAndRefactorings.IFixAllState.Document
1 write to Document
Microsoft.CodeAnalysis.Workspaces (1)
CodeFixesAndRefactorings\CommonFixAllState.cs (1)
39Document = 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)
41public Document? Document => State.Document;
CodeFixesAndRefactorings\CommonFixAllState.cs (2)
54var (newDocument, newProject) = documentAndProject.HasValue ? documentAndProject.Value : (Document, Project); 58if (newDocument == Document &&
CodeRefactorings\FixAllOccurences\FixAllContext.cs (1)
31public Document Document => State.Document!;
CodeRefactorings\FixAllOccurences\FixAllState.cs (5)
101Contract.ThrowIfNull(Document); 102var spanMappingService = Document.GetLanguageService<IFixAllSpanMappingService>(); 107Document, _selectionSpan, Scope, cancellationToken).ConfigureAwait(false); 112Contract.ThrowIfNull(Document); 113documentsToFix = SpecializedCollections.SingletonEnumerable(Document);