11 references to WellKnownGlobalOption
Microsoft.VisualStudio.IntegrationTest.Utilities (11)
InProcess\VisualStudioWorkspace_InProc.cs (1)
52
public void SetGlobalOption(
WellKnownGlobalOption
option, string? language, object? value)
OutOfProcess\VisualStudioWorkspace_OutOfProc.cs (5)
49
SetGlobalOption(
WellKnownGlobalOption
.CompletionOptions_ShowItemsFromUnimportedNamespaces, LanguageNames.CSharp, value);
50
SetGlobalOption(
WellKnownGlobalOption
.CompletionOptions_ShowItemsFromUnimportedNamespaces, LanguageNames.VisualBasic, value);
55
SetGlobalOption(
WellKnownGlobalOption
.MetadataAsSourceOptions_NavigateToDecompiledSources, language: null, value);
59
=> SetGlobalOption(
WellKnownGlobalOption
.CompletionOptions_TriggerInArgumentLists, LanguageNames.CSharp, value);
61
public void SetGlobalOption(
WellKnownGlobalOption
option, string? language, object? value)
WellKnownGlobalOptions.cs (5)
27
public static IOption2 GetOption(this
WellKnownGlobalOption
option)
30
WellKnownGlobalOption
.CompletionOptions_ShowItemsFromUnimportedNamespaces => CompletionOptionsStorage.ShowItemsFromUnimportedNamespaces,
31
WellKnownGlobalOption
.CompletionOptions_TriggerInArgumentLists => CompletionOptionsStorage.TriggerInArgumentLists,
32
WellKnownGlobalOption
.MetadataAsSourceOptions_NavigateToDecompiledSources => MetadataAsSourceOptionsStorage.NavigateToDecompiledSources,
36
public static OptionKey2 GetKey(this
WellKnownGlobalOption
option, string? language)