DatabaseUtils.CursorRowToContentValues(ICursor, ContentValues) Method

Definition

Read the entire contents of a cursor row and store them in a ContentValues.

[Android.Runtime.Register("cursorRowToContentValues", "(Landroid/database/Cursor;Landroid/content/ContentValues;)V", "")]
public static void CursorRowToContentValues (Android.Database.ICursor? cursor, Android.Content.ContentValues? values);
[<Android.Runtime.Register("cursorRowToContentValues", "(Landroid/database/Cursor;Landroid/content/ContentValues;)V", "")>]
static member CursorRowToContentValues : Android.Database.ICursor * Android.Content.ContentValues -> unit

Parameters

cursor
ICursor

the cursor to read from.

values
ContentValues

the ContentValues to put the row into.

Attributes

Remarks

Read the entire contents of a cursor row and store them in a ContentValues.

Java documentation for android.database.DatabaseUtils.cursorRowToContentValues(android.database.Cursor, android.content.ContentValues).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to