1 implementation of ITextBufferAssociatedViewService
Microsoft.CodeAnalysis.EditorFeatures (1)
Editor\TextBufferAssociatedViewService.cs (1)
26internal class TextBufferAssociatedViewService : ITextViewConnectionListener, ITextBufferAssociatedViewService
28 references to ITextBufferAssociatedViewService
Microsoft.CodeAnalysis.EditorFeatures (11)
CodeActions\CodeActionEditHandlerService.cs (3)
34private readonly ITextBufferAssociatedViewService _associatedViewService; 42ITextBufferAssociatedViewService associatedViewService) 50public ITextBufferAssociatedViewService AssociatedViewService => _associatedViewService;
CodeActions\ICodeActionEditHandlerService.cs (1)
15ITextBufferAssociatedViewService AssociatedViewService { get; }
Editor\TextBufferAssociatedViewService.cs (1)
25[Export(typeof(ITextBufferAssociatedViewService))]
InlineRename\InlineRenameService.cs (2)
33private readonly ITextBufferAssociatedViewService _textBufferAssociatedViewService; 49ITextBufferAssociatedViewService textBufferAssociatedViewService,
InlineRename\InlineRenameSession.cs (2)
43private readonly ITextBufferAssociatedViewService _textBufferAssociatedViewService; 139ITextBufferAssociatedViewService textBufferAssociatedViewService,
Workspaces\AbstractTextBufferVisibilityTracker.cs (2)
25private readonly ITextBufferAssociatedViewService _associatedViewService; 31ITextBufferAssociatedViewService associatedViewService,
Microsoft.CodeAnalysis.EditorFeatures.Cocoa (3)
SuggestedAction.CaretPositionRestorer.cs (2)
28private readonly ITextBufferAssociatedViewService _associatedViewService; 32public CaretPositionRestorer(ITextBuffer subjectBuffer, ITextBufferAssociatedViewService associatedViewService)
Workspaces\CocoaTextBufferVisibilityTracker.cs (1)
21ITextBufferAssociatedViewService associatedViewService,
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
TextEditor\TextBufferAssociatedViewServiceTests.cs (1)
38var service = Assert.IsType<TextBufferAssociatedViewService>(exportProvider.GetExportedValue<ITextBufferAssociatedViewService>());
Microsoft.CodeAnalysis.EditorFeatures.Wpf (3)
Suggestions\SuggestedActions\SuggestedAction.CaretPositionRestorer.cs (2)
28private readonly ITextBufferAssociatedViewService _associatedViewService; 32public CaretPositionRestorer(ITextBuffer subjectBuffer, ITextBufferAssociatedViewService associatedViewService)
Workspaces\WpfTextBufferVisibilityTracker.cs (1)
22ITextBufferAssociatedViewService associatedViewService,
Microsoft.CodeAnalysis.EditorFeatures2.UnitTests (2)
Rename\RenameTagProducerTests.vb (2)
1079Dim textViewService = Assert.IsType(Of TextBufferAssociatedViewService)(workspace.ExportProvider.GetExportedValue(Of ITextBufferAssociatedViewService)()) 1160Dim textViewService = Assert.IsType(Of TextBufferAssociatedViewService)(workspace.ExportProvider.GetExportedValue(Of ITextBufferAssociatedViewService)())
Microsoft.CodeAnalysis.VisualBasic.EditorFeatures (8)
LineCommit\AbstractCommitCaretMoveUndoPrimitive.vb (2)
14Private ReadOnly _textBufferAssociatedViewService As ITextBufferAssociatedViewService 17Public Sub New(textBuffer As ITextBuffer, textBufferAssociatedViewService As ITextBufferAssociatedViewService)
LineCommit\AfterCommitCaretMoveUndoPrimitive.vb (1)
15Public Sub New(textBuffer As ITextBuffer, textBufferAssociatedViewService As ITextBufferAssociatedViewService, position As CaretPosition)
LineCommit\BeforeCommitCaretMoveUndoPrimitive.vb (1)
16Public Sub New(textBuffer As ITextBuffer, textBufferAssociatedViewService As ITextBufferAssociatedViewService, oldLocation As CaretPosition)
LineCommit\CommitConnectionListener.vb (2)
22Private ReadOnly _textBufferAssociatedViewService As ITextBufferAssociatedViewService 29textBufferAssociatedViewService As ITextBufferAssociatedViewService,
LineCommit\CommitViewManager.vb (2)
18Private ReadOnly _textBufferAssociatedViewService As ITextBufferAssociatedViewService 24textBufferAssociatedViewService As ITextBufferAssociatedViewService,