7 references to BindableSupport
System (7)
compmod\system\componentmodel\BindableAttribute.cs (4)
73public BindableAttribute(BindableSupport flags) : this(flags, BindingDirection.OneWay) { 81public BindableAttribute(BindableSupport flags, BindingDirection direction) { 82this.bindable = (flags != BindableSupport.No); 83this.isDefault = (flags == BindableSupport.Default);
compmod\system\componentmodel\ListBindableAttribute.cs (3)
48public ListBindableAttribute(BindableSupport flags) { 49this.listBindable = (flags != BindableSupport.No); 50this.isDefault = (flags == BindableSupport.Default);