MockContentProvider.Insert(Uri, ContentValues) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Implement this to handle requests to insert a new row.
[Android.Runtime.Register("insert", "(Landroid/net/Uri;Landroid/content/ContentValues;)Landroid/net/Uri;", "GetInsert_Landroid_net_Uri_Landroid_content_ContentValues_Handler")]
public override Android.Net.Uri? Insert (Android.Net.Uri? uri, Android.Content.ContentValues? values);
[<Android.Runtime.Register("insert", "(Landroid/net/Uri;Landroid/content/ContentValues;)Landroid/net/Uri;", "GetInsert_Landroid_net_Uri_Landroid_content_ContentValues_Handler")>]
override this.Insert : Android.Net.Uri * Android.Content.ContentValues -> Android.Net.Uri
Parameters
- uri
- Uri
The content:// URI of the insertion request. This must not be null
.
- values
- ContentValues
A set of column_name/value pairs to add to the database.
This must not be null
.
Returns
- Attributes
Remarks
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.