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) || 543return string.Format(ServicesVSResources.Move_0_above_1, AllParameters[SelectedIndex!.Value].ShortAutomationText, AllParameters[SelectedIndex!.Value - 1].ShortAutomationText); 556return string.Format(ServicesVSResources.Move_0_below_1, AllParameters[SelectedIndex!.Value].ShortAutomationText, AllParameters[SelectedIndex!.Value + 1].ShortAutomationText); 569return string.Format(ServicesVSResources.Remove_0, AllParameters[SelectedIndex!.Value].ShortAutomationText); 582return string.Format(ServicesVSResources.Restore_0, AllParameters[SelectedIndex!.Value].ShortAutomationText);