I don't think you can. Instead you probably want to just not use a delegated property.
Instead create a private property. Then a public property with a custom setter and getter. Do the observable behavior when the public setter is called.
If it wasn't supposed to be a public setter, then probably a private function for setting and doing the observing work.