- uri
- The uri of the content that was changed.
- observer
- The observer that originated the change, may be null. The observer that originated the change will only receive the notification if it has requested to receive self-change notifications by implementing Android.Database.ContentObserver.DeliverSelfNotifications to return true.
- syncToNetwork
- If true, attempt to sync the change to the network.
Notify registered observers that a row was updated. To register, call ContentResolver.RegisterContentObserver(Android.Net.Uri, System.Boolean, System.Boolean). By default, CursorAdapter objects will get this notification. If syncToNetwork is true, this will attempt to schedule a local sync using the sync adapter that's registered for the authority of the provided uri. No account will be passed to the sync adapter, so all matching accounts will be synchronized.