CursorJoiner(ICursor, String[], ICursor, String[]) Constructor
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.
Initializes the CursorJoiner and resets the cursors to the first row.
[Android.Runtime.Register(".ctor", "(Landroid/database/Cursor;[Ljava/lang/String;Landroid/database/Cursor;[Ljava/lang/String;)V", "")]
public CursorJoiner (Android.Database.ICursor? cursorLeft, string[]? columnNamesLeft, Android.Database.ICursor? cursorRight, string[]? columnNamesRight);
[<Android.Runtime.Register(".ctor", "(Landroid/database/Cursor;[Ljava/lang/String;Landroid/database/Cursor;[Ljava/lang/String;)V", "")>]
new Android.Database.CursorJoiner : Android.Database.ICursor * string[] * Android.Database.ICursor * string[] -> Android.Database.CursorJoiner
Parameters
- cursorLeft
- ICursor
The left cursor to compare
- columnNamesLeft
- String[]
The column names to compare from the left cursor
- cursorRight
- ICursor
The right cursor to compare
- columnNamesRight
- String[]
The column names to compare from the right cursor
- Attributes
Remarks
Initializes the CursorJoiner and resets the cursors to the first row. The left and right column name arrays must have the same number of columns.
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.