I have the following low level request (.Net):
var scroll = client.LowLevel.Search<StringResponse>(SearchIndex, queryText,
new SearchRequestParameters()
{
Scroll = TimeSpan.FromMinutes(5)
});
I am getting back Hits and a _scroll_id
I can process the Hits, but I don't know how to iterate on the scroll id and get the rest of the data.
In particular, I'm looking for how to code the fetches given the scroll id, something like:
var scroll2 = client.LowLevel.Scroll<StringResponse>( ?? somehow encode the _scroll_id ?? );
-Thanks in advance