5 overrides of AddTags
Microsoft.CodeAnalysis.EditorFeatures (5)
Classification\Syntactic\SyntacticClassificationTaggerProvider.Tagger.cs (1)
25public override void AddTags(
Classification\TotalClassificationTaggerProvider.cs (1)
75public override void AddTags(NormalizedSnapshotSpanCollection spans, SegmentedList<TagSpan<IClassificationTag>> totalTags)
InlineHints\InlineHintsTagger.cs (1)
107public override void AddTags(
Tagging\AbstractAsynchronousTaggerProvider.Tagger.cs (1)
38public override void AddTags(NormalizedSnapshotSpanCollection spans, SegmentedList<TagSpan<TTag>> tags)
Tagging\AggregateTagger.cs (1)
59public override void AddTags(NormalizedSnapshotSpanCollection spans, SegmentedList<TagSpan<TTag>> tags)
4 references to AddTags
Microsoft.CodeAnalysis.EditorFeatures (4)
Classification\TotalClassificationTaggerProvider.cs (3)
83arg.syntacticTagger.AddTags(spans, tags); 88arg.semanticTagger.AddTags(spans, tags); 93arg.embeddedTagger.AddTags(spans, tags);
Tagging\AggregateTagger.cs (1)
62tagger.AddTags(spans, tags);