Implemented interface member:
property
Document
Microsoft.CodeAnalysis.CodeFixesAndRefactorings.IFixAllState.Document
1 write to Document
Microsoft.CodeAnalysis.Workspaces (1)
CodeFixesAndRefactorings\CommonFixAllState.cs (1)
37Document = document;
9 references to Document
Microsoft.CodeAnalysis.Workspaces (9)
CodeFixes\FixAllOccurrences\FixAllContext.cs (1)
40public Document? Document => State.Document;
CodeFixesAndRefactorings\CommonFixAllState.cs (2)
51var (newDocument, newProject) = documentAndProject.HasValue ? documentAndProject.Value : (Document, Project); 55if (newDocument == Document &&
CodeRefactorings\FixAllOccurences\FixAllContext.cs (1)
31public Document Document => State.Document!;
CodeRefactorings\FixAllOccurences\FixAllState.cs (5)
96Contract.ThrowIfNull(Document); 97var spanMappingService = Document.GetLanguageService<IFixAllSpanMappingService>(); 102Document, _selectionSpan, Scope, cancellationToken).ConfigureAwait(false); 107Contract.ThrowIfNull(Document); 108documentsToFix = [Document];