SearchResult.JoinedResults Property
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.
Gets a list of SearchResult
joined from the join operation.
public System.Collections.Generic.IList<Android.App.AppSearch.SearchResult> JoinedResults { [Android.Runtime.Register("getJoinedResults", "()Ljava/util/List;", "", ApiSince=34)] get; }
[<get: Android.Runtime.Register("getJoinedResults", "()Ljava/util/List;", "", ApiSince=34)>]
member this.JoinedResults : System.Collections.Generic.IList<Android.App.AppSearch.SearchResult>
Property Value
a List of SearchResults containing joined documents.
- Attributes
Remarks
Gets a list of SearchResult
joined from the join operation.
These joined documents match the outer document as specified in the JoinSpec
with parentPropertyExpression and childPropertyExpression. They are ordered according to the JoinSpec#getNestedSearchSpec
, and as many SearchResults as specified by JoinSpec#getMaxJoinedResultCount
will be returned. If no JoinSpec
was specified, this returns an empty list.
This method is inefficient to call repeatedly, as new SearchResult
objects are created each time.
Java documentation for android.app.appsearch.SearchResult.getJoinedResults()
.
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.