Implemented interface member:
property
IsChecked
Microsoft.VisualStudio.LanguageServices.Implementation.Options.Style.NamingPreferences.SymbolSpecificationViewModel.ISymbolSpecificationViewModelPart.IsChecked
5 writes to IsChecked
Microsoft.VisualStudio.LanguageServices.Implementation (5)
Options\Style\NamingPreferences\SymbolSpecification\SymbolSpecificationDialog.xaml.cs (2)
102
item.
IsChecked
= true;
110
item.
IsChecked
= false;
Options\Style\NamingPreferences\SymbolSpecification\SymbolSpecificationViewModel.cs (3)
192
IsChecked
= specification.ApplicableSymbolKindList.Any(static (k, symbolKind) => k.SymbolKind == symbolKind, symbolKind);
199
IsChecked
= specification.ApplicableSymbolKindList.Any(static (k, typeKind) => k.TypeKind == typeKind, typeKind);
206
IsChecked
= specification.ApplicableSymbolKindList.Any(static (k, methodKind) => k.MethodKind == methodKind, methodKind);
2 references to IsChecked
Microsoft.VisualStudio.LanguageServices.Implementation (2)
Options\Style\NamingPreferences\NamingStyleOptionPageViewModel.cs (1)
101
n.SymbolKindList.Where(s => s.
IsChecked
).Select(k => k.CreateSymbolOrTypeOrMethodKind()).ToImmutableArray(),
Options\Style\NamingPreferences\SymbolSpecification\SymbolSpecificationViewModel.cs (1)
148
SymbolKindList.Where(s => s.
IsChecked
).Select(s => s.CreateSymbolOrTypeOrMethodKind()).ToImmutableArray(),