'Declaration Public Function Search( _ ByVal searchTerm As String, _ Optional ByVal searchOptions As SearchOptions, _ Optional ByVal callback As Action(Of List(Of SearchResult)) _ ) As Task
public Task Search( string searchTerm, SearchOptions searchOptions, Action<List<SearchResult>> callback )
Parameters
- searchTerm
- String to find.
- searchOptions
- The object optionally defines the search options.
- callback
- The function to call after performing search.
Return Value
A task that represents the asynchronous operation of performing the search.