9 references to ReferenceHighlightingOptionsStorage
Microsoft.CodeAnalysis.EditorFeatures (2)
ReferenceHighlighting\ReferenceHighlightingViewTaggerProvider.cs (2)
50protected override ImmutableArray<IOption2> Options { get; } = ImmutableArray.Create<IOption2>(ReferenceHighlightingOptionsStorage.ReferenceHighlighting); 121if (!_globalOptions.GetOption(ReferenceHighlightingOptionsStorage.ReferenceHighlighting, document.Project.Language))
Microsoft.CodeAnalysis.EditorFeatures2.UnitTests (1)
ReferenceHighlighting\AbstractReferenceHighlightingTests.vb (1)
41globalOptions.SetGlobalOption(ReferenceHighlightingOptionsStorage.ReferenceHighlighting, hostDocument.Project.Language, optionIsEnabled)
Microsoft.VisualStudio.LanguageServices.CSharp (3)
Options\AdvancedOptionPageControl.xaml.cs (1)
110BindToOption(EnableHighlightReferences, ReferenceHighlightingOptionsStorage.ReferenceHighlighting, LanguageNames.CSharp);
Options\AutomationObject\AutomationObject.OnOff.cs (2)
77get { return GetBooleanOption(ReferenceHighlightingOptionsStorage.ReferenceHighlighting); } 78set { SetBooleanOption(ReferenceHighlightingOptionsStorage.ReferenceHighlighting, value); }
Microsoft.VisualStudio.LanguageServices.VisualBasic (3)
Options\AdvancedOptionPageControl.xaml.vb (1)
103BindToOption(EnableHighlightReferences, ReferenceHighlightingOptionsStorage.ReferenceHighlighting, LanguageNames.VisualBasic)
Options\AutomationObject\AutomationObject.OnOff.vb (2)
57Return GetBooleanOption(ReferenceHighlightingOptionsStorage.ReferenceHighlighting) 60SetBooleanOption(ReferenceHighlightingOptionsStorage.ReferenceHighlighting, value)