Android.Content.ContentResolver.NotifyChange Method
Notify registered observers that a row was updated.

Syntax

[Android.Runtime.Register("notifyChange", "(Landroid/net/Uri;Landroid/database/ContentObserver;Z)V", "GetNotifyChange_Landroid_net_Uri_Landroid_database_ContentObserver_ZHandler")]
public virtual void NotifyChange (Android.Net.Uri uri, Android.Database.ContentObserver observer, bool syncToNetwork)

See Also

ContentResolver.RequestSync(Android.Accounts.Account, System.String, System.String)

Parameters

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.

Remarks

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.

[Android Documentation]

Requirements

Namespace: Android.Content
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1