Class GetSearchResultsCommandSettings
Returns search results from given fromIndex to given toIndex from the search with the given
identifier.
public sealed class GetSearchResultsCommandSettings : ICommand
- Inheritance
-
GetSearchResultsCommandSettings
- Implements
- Inherited Members
Properties
CommandName
Gets the name of the command.
[JsonIgnore]
public string CommandName { get; }
Property Value
FromIndex
Start index of the search result to be returned.
[JsonPropertyName("fromIndex")]
public long FromIndex { get; set; }
Property Value
SearchId
Unique search session identifier.
[JsonPropertyName("searchId")]
public string SearchId { get; set; }
Property Value
ToIndex
End index of the search result to be returned.
[JsonPropertyName("toIndex")]
public long ToIndex { get; set; }