7 references to GetCodeActionOptions
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
Options\GlobalOptionsTests.cs (1)
184VerifyDataMembersHaveNonDefaultValues(globalOptions.GetCodeActionOptions(languageServices), CodeActionOptions.GetDefault(languageServices), language);
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Features\Options\CodeActionOptionsStorage.cs (1)
41return new DelegatingCodeActionOptionsProvider(languageService => ImmutableInterlocked.GetOrAdd(ref cache, languageService.Language, (_, options) => GetCodeActionOptions(options, languageService), globalOptions));
Features\Options\GlobalCodeActionOptionsProvider.cs (1)
46=> _globalOptions.GetCodeActionOptions(languageServices);
Microsoft.VisualStudio.LanguageServices (4)
CodeCleanup\AbstractCodeCleanUpFixer.cs (3)
139var options = _globalOptions.GetCodeActionOptions(document.Project.Services); 208var options = _globalOptions.GetCodeActionOptions(document.Project.Services); 295var ideOptions = _globalOptions.GetCodeActionOptions(project.Services);
TableDataSource\Suppression\VisualStudioSuppressionFixService.cs (1)
316var options = _globalOptions.GetCodeActionOptions(languageService);