6 overrides of Options
Microsoft.CodeAnalysis.EditorFeatures (6)
BraceMatching\BraceHighlightingViewTaggerProvider.cs (1)
34protected sealed override ImmutableArray<IOption2> Options { get; } = [BraceMatchingOptionsStorage.BraceMatching];
InlineDiagnostics\AbstractDiagnosticsTaggerProvider.SingleDiagnosticKindPullTaggerProvider.cs (1)
63protected override ImmutableArray<IOption2> Options => _callback.Options;
KeywordHighlighting\HighlighterViewTaggerProvider.cs (1)
46protected override ImmutableArray<IOption2> Options { get; } = [KeywordHighlightingOptionsStorage.KeywordHighlighting];
LineSeparators\LineSeparatorTaggerProvider.cs (1)
41protected sealed override ImmutableArray<IOption2> Options { get; } = [];
ReferenceHighlighting\ReferenceHighlightingViewTaggerProvider.cs (1)
47protected override ImmutableArray<IOption2> Options { get; } = [ReferenceHighlightingOptionsStorage.ReferenceHighlighting];
Tagging\AsynchronousViewportTaggerProvider.SingleViewportTaggerProvider.cs (1)
37protected override ImmutableArray<IOption2> Options
5 references to Options
Microsoft.CodeAnalysis.EditorFeatures (5)
Tagging\AbstractAsynchronousTaggerProvider.TagSource.cs (3)
311Contract.ThrowIfTrue(_dataSource.Options.Any(o => o is not Option2<bool> and not PerLanguageOption2<bool>), "All options must be Option2<bool> or PerLanguageOption2<bool>"); 317if (_dataSource.Options.IsEmpty && _dataSource.FeatureOptions.IsEmpty) 325_dataSource.Options.Contains(option) || _dataSource.FeatureOptions.Contains(option)));
Tagging\AbstractAsynchronousTaggerProvider.TagSource_ProduceTags.cs (1)
582foreach (var option in _dataSource.Options)
Tagging\AsynchronousViewportTaggerProvider.cs (1)
83/// <inheritdoc cref="AbstractAsynchronousTaggerProvider{TTag}.Options"/>