Interface IPage<T>
Represents the result of a paged query, returned by manually paged query executions.
Inherited Members
ICollection<T>.Add(T)
ICollection<T>.Clear()
ICollection<T>.Contains(T)
ICollection<T>.CopyTo(T[], int)
ICollection<T>.Remove(T)
ICollection<T>.Count
ICollection<T>.IsReadOnly
IEnumerable<T>.GetEnumerator()
Namespace: Cassandra.Mapping
Assembly: Cassandra.dll
Syntax
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[] |