Implemented interface member:
property
IsChecked
Microsoft.VisualStudio.LanguageServices.Implementation.Options.Style.NamingPreferences.SymbolSpecificationViewModel.ISymbolSpecificationViewModelPart.IsChecked
3 writes to IsChecked
Microsoft.VisualStudio.LanguageServices.Implementation (3)
Options\Style\NamingPreferences\SymbolSpecification\SymbolSpecificationDialog.xaml.cs (2)
134item.IsChecked = true; 142item.IsChecked = false;
Options\Style\NamingPreferences\SymbolSpecification\SymbolSpecificationViewModel.cs (1)
259IsChecked = specification.RequiredModifierList.Any(static (m, modifier) => m.Modifier == modifier, modifier);
2 references to IsChecked
Microsoft.VisualStudio.LanguageServices.Implementation (2)
Options\Style\NamingPreferences\NamingStyleOptionPageViewModel.cs (1)
103n.ModifierList.Where(s => s.IsChecked).Select(m => new SymbolSpecification.ModifierKind(m._modifier)).ToImmutableArray()));
Options\Style\NamingPreferences\SymbolSpecification\SymbolSpecificationViewModel.cs (1)
150ModifierList.Where(m => m.IsChecked).Select(m => new ModifierKind(m._modifier)).ToImmutableArray());