1 write to _textView
Microsoft.CodeAnalysis.EditorFeatures (1)
Tagging\AbstractAsynchronousTaggerProvider.TagSource.cs (1)
154_textView = textView;
10 references to _textView
Microsoft.CodeAnalysis.EditorFeatures (10)
Tagging\AbstractAsynchronousTaggerProvider.TagSource.cs (7)
100/// examine <see cref="_textView"/> for this as that is only available for "view taggers" (taggers which 227if (_textView == null) 233_textView.Caret.PositionChanged += OnCaretPositionChanged; 246_dataSource.RemoveTagSource(_textView, _subjectBuffer); 263Contract.ThrowIfNull(_textView); 264_textView.Caret.PositionChanged -= OnCaretPositionChanged; 315var eventSource = _dataSource.CreateEventSource(_textView, _subjectBuffer);
Tagging\AbstractAsynchronousTaggerProvider.TagSource_ProduceTags.cs (3)
38var caret = _dataSource.GetCaretPoint(_textView, _subjectBuffer); 223var caretPosition = _dataSource.GetCaretPoint(_textView, _subjectBuffer); 272var spansToTag = _dataSource.GetSpansToTag(_textView, _subjectBuffer);