Interface IPage<T>
Represents the result of a paged query, returned by manually paged query executions.
Inherited Members
Namespace: Cassandra.Mapping
Assembly: ScyllaDB.dll
Syntax
[SuppressMessage("Naming", "CA1710:Identifiers should have correct suffix", Justification = "Public API")]
public interface IPage<T> : ICollection<T>, IEnumerable<T>, IEnumerable
Type Parameters
| Name | Description |
|---|---|
| T |
Properties
CurrentPagingState
Returns a token representing the state used to retrieve this results.
Declaration
byte[] CurrentPagingState { get; }
Property Value
| Type | Description |
|---|---|
| byte[] |
PagingState
Returns a token representing the state to retrieve the next page of results.
Declaration
byte[] PagingState { get; }
Property Value
| Type | Description |
|---|---|
| byte[] |