13 references to GetRelatedDocumentIds
Microsoft.CodeAnalysis.EditorFeatures (1)
Shared\Tagging\EventSources\TaggerEventSources.ParseOptionChangedEventSource.cs (1)
43var relatedDocumentIds = e.NewSolution.GetRelatedDocumentIds(documentId);
Microsoft.CodeAnalysis.Features (2)
Completion\Providers\AbstractPreprocessorCompletionProvider.cs (1)
33foreach (var documentId in solution.GetRelatedDocumentIds(originatingDocument.Id))
Completion\Providers\AbstractRecommendationServiceBasedCompletionProvider.cs (1)
206var relatedDocumentIds = document.Project.Solution.GetRelatedDocumentIds(document.Id);
Microsoft.CodeAnalysis.Workspaces (8)
Workspace\Solution\Document.cs (1)
433var filteredDocumentIds = this.Project.Solution.GetRelatedDocumentIds(this.Id);
Workspace\TextExtensions.cs (3)
39var relatedIds = solution.GetRelatedDocumentIds(documentId); 81var allIds = solution.GetRelatedDocumentIds(id); 120var relatedIds = solution.GetRelatedDocumentIds(documentId);
Workspace\Workspace.cs (3)
291var relatedDocumentIds = solution.GetRelatedDocumentIds(addedDocumentId); 308var relatedDocumentIds = solution.GetRelatedDocumentIds(changedDocumentId); 1039var linkedDocumentIds = oldSolution.GetRelatedDocumentIds(data.documentId);
Workspace\Workspace_Editor.cs (1)
233return CurrentSolution.GetRelatedDocumentIds(documentId);
Microsoft.VisualStudio.LanguageServices (2)
Implementation\VisualStudioSupportsFeatureService.cs (2)
62return SupportsRenameWorker(workspace.CurrentSolution.GetRelatedDocumentIds(documentId)); 100=> SupportsRenameWorker(document.Project.Solution.GetRelatedDocumentIds(document.Id));