20 references to AllParameters
Microsoft.VisualStudio.LanguageServices (20)
ChangeSignature\ChangeSignatureDialogViewModel.cs (20)
110foreach (var parameter in AllParameters) 140NotifyPropertyChanged(nameof(AllParameters)); 184return !AllParameters[index].IsRemoved; 197return AllParameters[index].IsRemoved; 205if (!AllParameters.Any()) 227if (AllParameters[_selectedIndex!.Value] is AddedParameterViewModel) 229var parameterToRemove = AllParameters[_selectedIndex!.Value]; 238AllParameters[_selectedIndex!.Value].IsRemoved = true; 247AllParameters[_selectedIndex!.Value].IsRemoved = false; 269NotifyPropertyChanged(nameof(AllParameters)); 353foreach (var parameter in AllParameters.Where(p => !p.IsRemoved)) 471NotifyPropertyChanged(nameof(AllParameters)); 478var canSubmit = AllParameters.Any(p => p.IsRemoved) || 479AllParameters.Any(p => p is AddedParameterViewModel) || 547return string.Format(ServicesVSResources.Move_0_above_1, AllParameters[SelectedIndex!.Value].ShortAutomationText, AllParameters[SelectedIndex!.Value - 1].ShortAutomationText); 560return string.Format(ServicesVSResources.Move_0_below_1, AllParameters[SelectedIndex!.Value].ShortAutomationText, AllParameters[SelectedIndex!.Value + 1].ShortAutomationText); 573return string.Format(ServicesVSResources.Remove_0, AllParameters[SelectedIndex!.Value].ShortAutomationText); 586return string.Format(ServicesVSResources.Restore_0, AllParameters[SelectedIndex!.Value].ShortAutomationText);