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