Android.Content.ContentProvider.BulkInsert Method
Override this to handle requests to insert a set of new rows, or the default implementation will iterate over the values and call ContentProvider.Insert(Android.Net.Uri, Android.Content.ContentValues) on each of them.

Syntax

[Android.Runtime.Register("bulkInsert", "(Landroid/net/Uri;[Landroid/content/ContentValues;)I", "GetBulkInsert_Landroid_net_Uri_arrayLandroid_content_ContentValues_Handler")]
public virtual int BulkInsert (Android.Net.Uri uri, ContentValues[] values)

Parameters

uri
The content:// URI of the insertion request.
values
An array of sets of column_name/value pairs to add to the database. This must not be null.

Returns

Documentation for this section has not yet been entered.

Remarks

Override this to handle requests to insert a set of new rows, or the default implementation will iterate over the values and call ContentProvider.Insert(Android.Net.Uri, Android.Content.ContentValues) on each of them. As a courtesy, call ContentResolver.NotifyChange(Android.Net.Uri, Android.Database.ContentObserver) after inserting. This method can be called from multiple threads, as described in Processes and Threads.

[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