ContentProviderOperation.Builder.WithValueBackReference 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.
Overloads
| Name | Description |
|---|---|
| WithValueBackReference(String, Int32) |
Add a ContentValues back reference. |
| WithValueBackReference(String, Int32, String) |
Configure the given value to be dynamically overwritten using the result of a previous operation. This method will replace any previously defined value for this key. |
WithValueBackReference(String, Int32)
Add a ContentValues back reference.
[Android.Runtime.Register("withValueBackReference", "(Ljava/lang/String;I)Landroid/content/ContentProviderOperation$Builder;", "GetWithValueBackReference_Ljava_lang_String_IHandler")]
public virtual Android.Content.ContentProviderOperation.Builder WithValueBackReference(string key, int fromIndex);
[<Android.Runtime.Register("withValueBackReference", "(Ljava/lang/String;I)Landroid/content/ContentProviderOperation$Builder;", "GetWithValueBackReference_Ljava_lang_String_IHandler")>]
abstract member WithValueBackReference : string * int -> Android.Content.ContentProviderOperation.Builder
override this.WithValueBackReference : string * int -> Android.Content.ContentProviderOperation.Builder
Parameters
- key
- String
the key indicating which value to configure. This value cannot be null .
- fromIndex
- Int32
the index indicating which historical ContentProviderResult should overwrite the value
Returns
This value cannot be null .
- 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.
Applies to
WithValueBackReference(String, Int32, String)
Configure the given value to be dynamically overwritten using the result of a previous operation. This method will replace any previously defined value for this key.
[Android.Runtime.Register("withValueBackReference", "(Ljava/lang/String;ILjava/lang/String;)Landroid/content/ContentProviderOperation$Builder;", "GetWithValueBackReference_Ljava_lang_String_ILjava_lang_String_Handler", ApiSince=30)]
public virtual Android.Content.ContentProviderOperation.Builder WithValueBackReference(string key, int fromIndex, string fromKey);
[<Android.Runtime.Register("withValueBackReference", "(Ljava/lang/String;ILjava/lang/String;)Landroid/content/ContentProviderOperation$Builder;", "GetWithValueBackReference_Ljava_lang_String_ILjava_lang_String_Handler", ApiSince=30)>]
abstract member WithValueBackReference : string * int * string -> Android.Content.ContentProviderOperation.Builder
override this.WithValueBackReference : string * int * string -> Android.Content.ContentProviderOperation.Builder
Parameters
- key
- String
the key indicating which value to configure. This value cannot be null .
- fromIndex
- Int32
the index indicating which historical ContentProviderResult should overwrite the value
- fromKey
- String
the key of indicating which ContentProviderResult.extras value should overwrite the value. This value cannot be null .
Returns
This value cannot be null .
- Attributes
Remarks
Configure the given value to be dynamically overwritten using the result of a previous operation. This method will replace any previously defined value for this key.
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.