7 overrides of Options
Microsoft.CodeAnalysis.EditorFeatures (5)
BraceMatching\BraceHighlightingViewTaggerProvider.cs (1)
38
protected sealed override ImmutableArray<IOption2>
Options
{ get; } = ImmutableArray.Create<IOption2>(BraceMatchingOptionsStorage.BraceMatching);
Classification\Semantic\AbstractSemanticOrEmbeddedClassificationViewTaggerProvider.cs (1)
41
protected sealed override ImmutableArray<IOption2>
Options
{ get; } = ImmutableArray.Create<IOption2>(SemanticColorizerOptionsStorage.SemanticColorizer);
Diagnostics\AbstractPushOrPullDiagnosticsTaggerProvider.SingleDiagnosticKindPullTaggerProvider.cs (1)
45
protected override ImmutableArray<IOption2>
Options
=> _callback.Options;
KeywordHighlighting\HighlighterViewTaggerProvider.cs (1)
47
protected override ImmutableArray<IOption2>
Options
{ get; } = ImmutableArray.Create<IOption2>(KeywordHighlightingOptionsStorage.KeywordHighlighting);
ReferenceHighlighting\ReferenceHighlightingViewTaggerProvider.cs (1)
50
protected override ImmutableArray<IOption2>
Options
{ get; } = ImmutableArray.Create<IOption2>(ReferenceHighlightingOptionsStorage.ReferenceHighlighting);
Microsoft.CodeAnalysis.EditorFeatures.Wpf (2)
LineSeparators\LineSeparatorTaggerProvider.cs (1)
47
protected sealed override ImmutableArray<IOption2>
Options
{ get; } = ImmutableArray<IOption2>.Empty;
StringIndentation\StringIndentationTaggerProvider.cs (1)
43
protected override ImmutableArray<IOption2>
Options
{ get; } = ImmutableArray.Create<IOption2>(StringIndentationOptionsStorage.StringIdentation);
4 references to Options
Microsoft.CodeAnalysis.EditorFeatures (4)
Tagging\AbstractAsynchronousTaggerProvider.TagSource.cs (2)
313
Contract.ThrowIfTrue(_dataSource.
Options
.Any(o => o is not Option2<bool> and not PerLanguageOption2<bool>), "All options must be Option2<bool> or PerLanguageOption2<bool>");
319
var optionChangedEventSources = _dataSource.
Options
.Concat(_dataSource.FeatureOptions)
Tagging\AbstractAsynchronousTaggerProvider.TagSource_ProduceTags.cs (2)
387
if (_dataSource.
Options
.OfType<Option2<bool>>().Any(option => !_dataSource.GlobalOptions.GetOption(option)))
391
return _dataSource.
Options
.OfType<PerLanguageOption2<bool>>().Any(option => languageName == null || !_dataSource.GlobalOptions.GetOption(option, languageName));