AsyncQueryHandler.OnQueryComplete(Int32, Object, ICursor) 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.
Called when an asynchronous query is completed.
[Android.Runtime.Register("onQueryComplete", "(ILjava/lang/Object;Landroid/database/Cursor;)V", "GetOnQueryComplete_ILjava_lang_Object_Landroid_database_Cursor_Handler")]
protected virtual void OnQueryComplete (int token, Java.Lang.Object? cookie, Android.Database.ICursor? cursor);
[<Android.Runtime.Register("onQueryComplete", "(ILjava/lang/Object;Landroid/database/Cursor;)V", "GetOnQueryComplete_ILjava_lang_Object_Landroid_database_Cursor_Handler")>]
abstract member OnQueryComplete : int * Java.Lang.Object * Android.Database.ICursor -> unit
override this.OnQueryComplete : int * Java.Lang.Object * Android.Database.ICursor -> unit
Parameters
- token
- Int32
the token to identify the query, passed in from
#startQuery
.
- cookie
- Object
the cookie object passed in from #startQuery
.
- cursor
- ICursor
The cursor holding the results from the query.
- Attributes
Remarks
Called when an asynchronous query is completed.
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.