Implemented interface member:
property
Document
Microsoft.CodeAnalysis.CodeFixesAndRefactorings.IRefactorOrFixAllState.Document
1 write to Document
Microsoft.CodeAnalysis.Workspaces (1)
CodeFixesAndRefactorings\CommonFixAllState.cs (1)
38Document = document;
10 references to Document
Microsoft.CodeAnalysis.Features (1)
CodeFixes\Suppression\AbstractSuppressionBatchFixAllProvider.cs (1)
218var title = FixAllHelper.GetDefaultFixAllTitle(fixAllState.Scope, title: fixAllState.DiagnosticIds.First(), fixAllState.Document!, fixAllState.Project);
Microsoft.CodeAnalysis.Workspaces (9)
CodeFixes\FixAllOccurrences\FixAllContext.cs (1)
39public Document? Document => State.Document;
CodeFixesAndRefactorings\CommonFixAllState.cs (2)
52var (newDocument, newProject) = documentAndProject.HasValue ? documentAndProject.Value : (Document, Project); 56if (newDocument == Document &&
CodeRefactorings\FixAllOccurences\RefactorAllContext.cs (1)
31public Document Document => State.Document!;
CodeRefactorings\FixAllOccurences\RefactorAllState.cs (5)
95Contract.ThrowIfNull(Document); 96var spanMappingService = Document.GetLanguageService<IFixAllSpanMappingService>(); 101Document, _selectionSpan, Scope, cancellationToken).ConfigureAwait(false); 106Contract.ThrowIfNull(Document); 107documentsToRefactor = [Document];