1 implementation of GetAssociatedTextViews
Microsoft.CodeAnalysis.EditorFeatures (1)
Editor\TextBufferAssociatedViewService.cs (1)
107public IEnumerable<ITextView> GetAssociatedTextViews(ITextBuffer textBuffer)
4 references to GetAssociatedTextViews
Microsoft.CodeAnalysis.EditorFeatures (4)
InlineRename\InlineRenameSession.cs (2)
178_triggerView = textBufferAssociatedViewService.GetAssociatedTextViews(triggerSpan.Snapshot.TextBuffer).FirstOrDefault(v => v.HasAggregateFocus) ?? 179textBufferAssociatedViewService.GetAssociatedTextViews(triggerSpan.Snapshot.TextBuffer).First();
InlineRename\InlineRenameSession.OpenTextBufferManager.cs (1)
70foreach (var view in session._textBufferAssociatedViewService.GetAssociatedTextViews(_subjectBuffer))
Workspaces\AbstractTextBufferVisibilityTracker.cs (1)
73var views = _associatedViewService.GetAssociatedTextViews(subjectBuffer).ToImmutableArrayOrEmpty();