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