20 references to AllParameters
Microsoft.VisualStudio.LanguageServices (20)
ChangeSignature\ChangeSignatureDialogViewModel.cs (20)
111foreach (var parameter in AllParameters) 141NotifyPropertyChanged(nameof(AllParameters)); 185return !AllParameters[index].IsRemoved; 198return AllParameters[index].IsRemoved; 206if (!AllParameters.Any()) 228if (AllParameters[_selectedIndex!.Value] is AddedParameterViewModel) 230var parameterToRemove = AllParameters[_selectedIndex!.Value]; 239AllParameters[_selectedIndex!.Value].IsRemoved = true; 248AllParameters[_selectedIndex!.Value].IsRemoved = false; 270NotifyPropertyChanged(nameof(AllParameters)); 354foreach (var parameter in AllParameters.Where(p => !p.IsRemoved)) 472NotifyPropertyChanged(nameof(AllParameters)); 479var canSubmit = AllParameters.Any(p => p.IsRemoved) || 480AllParameters.Any(p => p is AddedParameterViewModel) || 548return string.Format(ServicesVSResources.Move_0_above_1, AllParameters[SelectedIndex!.Value].ShortAutomationText, AllParameters[SelectedIndex!.Value - 1].ShortAutomationText); 561return string.Format(ServicesVSResources.Move_0_below_1, AllParameters[SelectedIndex!.Value].ShortAutomationText, AllParameters[SelectedIndex!.Value + 1].ShortAutomationText); 574return string.Format(ServicesVSResources.Remove_0, AllParameters[SelectedIndex!.Value].ShortAutomationText); 587return string.Format(ServicesVSResources.Restore_0, AllParameters[SelectedIndex!.Value].ShortAutomationText);