8 references to GetRelatedDocuments
Microsoft.CodeAnalysis.EditorFeatures (2)
InlineRename\InlineRenameSession.cs (1)
429var documents = textBuffer.AsTextContainer().GetRelatedDocuments();
Structure\AbstractStructureTaggerProvider.cs (1)
71var openDocument = subjectBuffer.AsTextContainer().GetRelatedDocuments().FirstOrDefault();
Microsoft.CodeAnalysis.EditorFeatures.Text (1)
Extensions.cs (1)
88=> buffer.AsTextContainer().GetRelatedDocuments();
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
MetadataAsSource\AbstractMetadataAsSourceTests.TestContext.cs (1)
318return 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)
196var openDocument = wpfTextView.TextBuffer.AsTextContainer().GetRelatedDocuments().FirstOrDefault();
LanguageService\AbstractLanguageService`2.VsCodeWindowManager.cs (1)
82var document = textBuffer?.AsTextContainer()?.GetRelatedDocuments().FirstOrDefault();
Workspace\VisualStudioSymbolNavigationService.cs (1)
169var openedDocument = textBuffer?.AsTextContainer().GetRelatedDocuments().FirstOrDefault();