ApiFeedback().SearchNext
Increments to the next search result in the array Returns the time-stamp of the current utterance in the search results.
Description
After a call to ApiFeedback().Search, the results are placed in an array structure that may be referenced iteratively. This method moves the index along to the next result in the array. When called in a loop along with ApiFeedback().SearchGetString, ApiFeedback().SearchGetTime, or ApiFeedback().SearchRemoveFromStack, the developer can get or remove the searched results, one after another, and results may be to be placed in a table or processed as they are received. A false value is returned when there are no more search results in the array.
Example Usage (C#)
bool success = _core.ApiFeedback().SearchNext();
Parameters
None. |
Returns
A boolean value containing the success or failure of the operation.
See Also
- ApiFeedback().Search
- ApiFeedback().SearchRemoveFromStack
- ApiFeedback().SearchGetString
- ApiFeedback().SearchGetTime