Created
April 4, 2011 22:32
-
-
Save anaisbetts/902612 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public IObservable<IObservedChange<object, object>> Changed { | |
| get { return _reactiveHelper.Changed; } | |
| } | |
| public IObservable<IObservedChange<object, object>> Changing { | |
| get { return _reactiveHelper.Changing; } | |
| } | |
| public IDisposable SuppressChangeNotifications() { | |
| return _reactiveHelper.SuppressChangeNotifications(); | |
| } | |
| public event PropertyChangingEventHandler PropertyChanging; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment