I have class which are inherit base class which have it own "OnPropertyChanged" event called, eg: Xamarin BindableObject like below
public string Name {
get { return (string)GetValue(NameProperty); }
set { SetValue(NameProperty, value); }
}
is it possible to automatic (or config options) opt-out those property without using DoNotNotifyAttribute
attribute?
and just weaving if property are auto-implemented property?
public string Name {
get;
set;
}
thank you
No. currently this is not possible