ContentProviderOperation.Builder.WithSelectionBackReference Method

Definition

Overloads

Name Description
WithSelectionBackReference(Int32, Int32)

Add a back references as a selection arg.

WithSelectionBackReference(Int32, Int32, String)

Configure the given selection argument to be dynamically overwritten using the result of a previous operation. This method will replace any previously defined selection argument at this index.

WithSelectionBackReference(Int32, Int32)

Add a back references as a selection arg.

[Android.Runtime.Register("withSelectionBackReference", "(II)Landroid/content/ContentProviderOperation$Builder;", "GetWithSelectionBackReference_IIHandler")]
public virtual Android.Content.ContentProviderOperation.Builder WithSelectionBackReference(int index, int fromIndex);
[<Android.Runtime.Register("withSelectionBackReference", "(II)Landroid/content/ContentProviderOperation$Builder;", "GetWithSelectionBackReference_IIHandler")>]
abstract member WithSelectionBackReference : int * int -> Android.Content.ContentProviderOperation.Builder
override this.WithSelectionBackReference : int * int -> Android.Content.ContentProviderOperation.Builder

Parameters

index
Int32

the index indicating which selection argument to configure

fromIndex
Int32

the index indicating which historical ContentProviderResult should overwrite the selection argument

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.

Java documentation for android.content.ContentProviderOperation.Builder.withSelectionBackReference(int, int).

Applies to

WithSelectionBackReference(Int32, Int32, String)

Configure the given selection argument to be dynamically overwritten using the result of a previous operation. This method will replace any previously defined selection argument at this index.

[Android.Runtime.Register("withSelectionBackReference", "(IILjava/lang/String;)Landroid/content/ContentProviderOperation$Builder;", "GetWithSelectionBackReference_IILjava_lang_String_Handler", ApiSince=30)]
public virtual Android.Content.ContentProviderOperation.Builder WithSelectionBackReference(int index, int fromIndex, string fromKey);
[<Android.Runtime.Register("withSelectionBackReference", "(IILjava/lang/String;)Landroid/content/ContentProviderOperation$Builder;", "GetWithSelectionBackReference_IILjava_lang_String_Handler", ApiSince=30)>]
abstract member WithSelectionBackReference : int * int * string -> Android.Content.ContentProviderOperation.Builder
override this.WithSelectionBackReference : int * int * string -> Android.Content.ContentProviderOperation.Builder

Parameters

index
Int32

the index indicating which selection argument to configure

fromIndex
Int32

the index indicating which historical ContentProviderResult should overwrite the selection argument

fromKey
String

the key of indicating which ContentProviderResult.extras value should overwrite the selection argument. This value cannot be null .

Returns

This value cannot be null .

Attributes

Remarks

Configure the given selection argument to be dynamically overwritten using the result of a previous operation. This method will replace any previously defined selection argument at this index.

Java documentation for android.content.ContentProviderOperation.Builder.withSelectionBackReference(int, int, java.lang.String).

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