1 write to _dropdownBar
Microsoft.VisualStudio.LanguageServices (1)
NavigationBar\NavigationBarClient.cs (1)
228_dropdownBar = pDropdownBar;
12 references to _dropdownBar
Microsoft.VisualStudio.LanguageServices (12)
NavigationBar\NavigationBarClient.cs (12)
61if (_dropdownBar == null) 64_dropdownBar.GetCurrentSelection(1, out var currentTypeIndex); 127Contract.ThrowIfNull(_dropdownBar, "The dropdown is asking us for things, so we should have a reference to it."); 130if (_dropdownBar.GetCurrentSelection(iCombo, out var selectionIndex) == VSConstants.S_OK && selectionIndex >= 0) 201Contract.ThrowIfNull(_dropdownBar, "The dropdown is asking us for things, so we should have a reference to it."); 208_dropdownBar.GetCurrentSelection((int)NavigationBarDropdownKind.Member, out selection); 209_dropdownBar.RefreshCombo((int)NavigationBarDropdownKind.Member, selection); 212_dropdownBar.GetCurrentSelection(iCombo, out selection); 310if (_dropdownBar == null) 319_dropdownBar.RefreshCombo((int)NavigationBarDropdownKind.Project, projectIndex); 320_dropdownBar.RefreshCombo((int)NavigationBarDropdownKind.Type, typeIndex); 321_dropdownBar.RefreshCombo((int)NavigationBarDropdownKind.Member, memberIndex);