9 references to GetRelatedDocuments
Microsoft.CodeAnalysis.EditorFeatures (3)
InlineRename\InlineRenameSession.cs (1)
425var documents = textBuffer.AsTextContainer().GetRelatedDocuments();
NavigationBar\NavigationBarController.cs (1)
243var documents = textContainer.GetRelatedDocuments();
Structure\AbstractStructureTaggerProvider.cs (1)
59var openDocument = subjectBuffer.AsTextContainer().GetRelatedDocuments().FirstOrDefault();
Microsoft.CodeAnalysis.EditorFeatures.Text (1)
Extensions.cs (1)
87=> buffer.AsTextContainer().GetRelatedDocuments();
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
MetadataAsSource\AbstractMetadataAsSourceTests.TestContext.cs (1)
309return stringText.Container.GetRelatedDocuments().Single();
Microsoft.CodeAnalysis.Workspaces (1)
ExternalAccess\VSTypeScript\Api\VSTypeScriptTextExtensions.cs (1)
13=> TextExtensions.GetRelatedDocuments(container);
Microsoft.VisualStudio.LanguageServices (3)
LanguageService\AbstractLanguageService`2.cs (1)
158var openDocument = wpfTextView.TextBuffer.AsTextContainer().GetRelatedDocuments().FirstOrDefault();
LanguageService\AbstractLanguageService`2.VsCodeWindowManager.cs (1)
81var document = textBuffer?.AsTextContainer()?.GetRelatedDocuments().FirstOrDefault();
Workspace\VisualStudioSymbolNavigationService.cs (1)
162var openedDocument = textBuffer?.AsTextContainer().GetRelatedDocuments().FirstOrDefault();