1 write to TextView
Microsoft.CodeAnalysis.CSharp.EditorFeatures (1)
EventHookup\EventHookupSessionManager_EventHookupSession.cs (1)
96
TextView
= textView;
8 references to TextView
Microsoft.CodeAnalysis.CSharp.EditorFeatures (8)
EventHookup\EventHookupSessionManager.cs (8)
69
var caretPoint = analyzedSession.
TextView
.GetCaretPoint(analyzedSession.SubjectBuffer);
80
_toolTipPresenter = _toolTipService.CreatePresenter(analyzedSession.
TextView
,
99
analyzedSession.
TextView
.TextSnapshot.TextBuffer.Changed += TextBuffer_Changed;
100
CurrentSession.Dismissed += () => { analyzedSession.
TextView
.TextSnapshot.TextBuffer.Changed -= TextBuffer_Changed; };
102
analyzedSession.
TextView
.Caret.PositionChanged += Caret_PositionChanged;
103
CurrentSession.Dismissed += () => { analyzedSession.
TextView
.Caret.PositionChanged -= Caret_PositionChanged; };
113
analyzedSession.
TextView
, ReasonForDismiss.DismissedAfterBufferChange, CancellationToken.None).ConfigureAwait(true);
197
var caretPoint = CurrentSession.
TextView
.GetCaretPoint(CurrentSession.SubjectBuffer);