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