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)
61
if (
_dropdownBar
== null)
64
_dropdownBar
.GetCurrentSelection(1, out var currentTypeIndex);
127
Contract.ThrowIfNull(
_dropdownBar
, "The dropdown is asking us for things, so we should have a reference to it.");
130
if (
_dropdownBar
.GetCurrentSelection(iCombo, out var selectionIndex) == VSConstants.S_OK && selectionIndex >= 0)
201
Contract.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);
310
if (
_dropdownBar
== null)
319
_dropdownBar
.RefreshCombo((int)NavigationBarDropdownKind.Project, projectIndex);
320
_dropdownBar
.RefreshCombo((int)NavigationBarDropdownKind.Type, typeIndex);
321
_dropdownBar
.RefreshCombo((int)NavigationBarDropdownKind.Member, memberIndex);