4 overrides of ProduceTagsAsync
Microsoft.CodeAnalysis.EditorFeatures (4)
BracePairs\BracePairsTaggerProvider.cs (1)
78protected override async Task ProduceTagsAsync(TaggerContext<IBracePairTag> context, CancellationToken cancellationToken)
Classification\Semantic\AbstractSemanticOrEmbeddedClassificationViewTaggerProvider.cs (1)
94protected sealed override Task ProduceTagsAsync(
EditAndContinue\ActiveStatementTaggerProvider.cs (1)
66protected override async Task ProduceTagsAsync(
ReferenceHighlighting\ReferenceHighlightingViewTaggerProvider.cs (1)
99protected override Task ProduceTagsAsync(
8 references to ProduceTagsAsync
Microsoft.CodeAnalysis.EditorFeatures (8)
Tagging\AbstractAsynchronousTaggerProvider.cs (4)
51/// <see cref="ProduceTagsAsync(TaggerContext{TTag}, CancellationToken)"/>. 200/// <see cref="ProduceTagsAsync(TaggerContext{TTag}, CancellationToken)"/>. 211/// and will asynchronously call into <see cref="ProduceTagsAsync(TaggerContext{TTag}, CancellationToken)"/> at some point in 295=> _provider.ProduceTagsAsync(context, CancellationToken.None);
Tagging\AbstractAsynchronousTaggerProvider.TagSource_ProduceTags.cs (1)
399: _dataSource.ProduceTagsAsync(context, cancellationToken);
Tagging\TaggerContext.cs (1)
40/// to <see cref="AbstractAsynchronousTaggerProvider{TTag}.ProduceTagsAsync(TaggerContext{TTag}, CancellationToken)"/>. Note: state will
Tagging\TaggerTextChangeBehavior.cs (2)
25/// that is passed to <see cref="AbstractAsynchronousTaggerProvider{TTag}.ProduceTagsAsync(TaggerContext{TTag}, CancellationToken)"/>. 32/// that is passed to <see cref="AbstractAsynchronousTaggerProvider{TTag}.ProduceTagsAsync(TaggerContext{TTag}, CancellationToken)"/>.