1 write to TextView
Microsoft.CodeAnalysis.EditorFeatures (1)
IntelliSense\AbstractController.cs (1)
51
this.
TextView
= textView;
15 references to TextView
Microsoft.CodeAnalysis.EditorFeatures (15)
IntelliSense\AbstractController.cs (6)
58
this.
TextView
.Closed += OnTextViewClosed;
62
this.
TextView
.Caret.PositionChanged += this.OnCaretPositionChanged;
63
this.
TextView
.TextBuffer.PostChanged += this.OnTextViewBufferPostChanged;
75
this.
TextView
.Closed -= OnTextViewClosed;
76
this.
TextView
.Caret.PositionChanged -= this.OnCaretPositionChanged;
77
this.
TextView
.TextBuffer.PostChanged -= this.OnTextViewBufferPostChanged;
SignatureHelp\Controller.cs (4)
78
return this.
TextView
.Caret.Position.BufferPosition;
93
var triggerSpan = modelOpt.GetCurrentSpanInView(this.
TextView
.TextSnapshot);
117
this.sessionOpt = new Session(this, Presenter.CreateSession(
TextView
, SubjectBuffer, null));
151
if (!this.
TextView
.GetCaretPoint(this.SubjectBuffer).HasValue)
SignatureHelp\Controller.Session_ComputeModel.cs (2)
33
var caretPosition = Controller.
TextView
.GetCaretPoint(Controller.SubjectBuffer).Value;
34
var disconnectedBufferGraph = new DisconnectedBufferGraph(Controller.SubjectBuffer, Controller.
TextView
.TextBuffer);
SignatureHelp\Controller_TypeChar.cs (3)
43
this.
TextView
.TextBuffer.PostChanged -= OnTextViewBufferPostChanged;
50
this.
TextView
.TextBuffer.PostChanged += OnTextViewBufferPostChanged;
64
if (this.
TextView
.TypeCharWasHandledStrangely(this.SubjectBuffer, args.TypedChar))