- uri
- The URI to query. This can potentially have a record ID if this is an update request for a specific record.
- values
- A set of column_name/value pairs to update in the database. This must not be null.
- selection
- An optional filter to match rows to update.
- selectionArgs
- Documentation for this section has not yet been entered.
Documentation for this section has not yet been entered.
Implement this to handle requests to update one or more rows. The implementation should update all rows matching the selection to set the columns according to the provided values map. As a courtesy, call ContentResolver.NotifyChange(Android.Net.Uri, Android.Database.ContentObserver) after updating. This method can be called from multiple threads, as described in Processes and Threads.