4 writes to _isChecked
Microsoft.VisualStudio.LanguageServices.Implementation (4)
Options\CheckBoxEnumFlagsViewModel.cs (2)
56SetProperty(ref _isChecked, (conversions.To(flags) & flag) == flag); 68SetProperty(ref _isChecked, value);
Options\CheckBoxViewModel.cs (2)
21SetProperty(ref _isChecked, optionStore.GetOption<bool>(option, option.IsPerLanguage ? info.Language : null)); 33SetProperty(ref _isChecked, value);
4 references to _isChecked
Microsoft.VisualStudio.LanguageServices.Implementation (4)
Options\AbstractCheckBoxViewModel.cs (1)
22internal virtual string GetPreview() => _isChecked ? _truePreview : _falsePreview;
Options\CheckBoxEnumFlagsViewModel.cs (1)
63return _isChecked;
Options\CheckBoxViewModel.cs (2)
28return _isChecked; 34Info.SetOptionAndUpdatePreview(_isChecked, Option, GetPreview());