1

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

codetale
  • 87
  • 6

1 Answers1

2

No. currently this is not possible

Simon
  • 33,714
  • 21
  • 133
  • 202