You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice that when the Object implements the INotifyPropertyChanged interface, that it subscribes to the interface and updates the Json text when the property has changed.
The text was updated successfully, but these errors were encountered:
Any update on this? It would be a great feature to have since it would mean that a quick wrap of collections like Dictionry<TKey, TValue> or List<TType> to call the PropertyChanged event, and in return solve the awkward issue of updating collections....
Unless there is an alternative to taking the collection, modifying it, and setting the object itself as the collection again...
The Json and Object properties are synchronized, so if one is changed, the other one is updated accordingly.
I don't think it should be the responsibility of JsonObject to inform potential observers of changes. If your application needs to be informed about changes, you are responsible to track them, as you are with any other type.
It would be nice that when the Object implements the INotifyPropertyChanged interface, that it subscribes to the interface and updates the Json text when the property has changed.
The text was updated successfully, but these errors were encountered: