ContentProviderOperation.Builder.WithSelectionBackReference 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 |
|---|---|
| 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.
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.
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.