Interface IPage<T>
Represents the result of a paged query, returned by manually paged query executions.
Inherited Members
System.Collections.Generic.ICollection<T>.Add(T)
System.Collections.Generic.ICollection<T>.Clear()
System.Collections.Generic.ICollection<T>.Contains(T)
System.Collections.Generic.ICollection<T>.CopyTo(T[], System.Int32)
System.Collections.Generic.ICollection<T>.Remove(T)
System.Collections.Generic.ICollection<T>.Count
System.Collections.Generic.ICollection<T>.IsReadOnly
System.Collections.Generic.IEnumerable<T>.GetEnumerator()
Namespace: Dse.Mapping
Assembly: Dse.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 |
---|---|
System.Byte[] |
PagingState
Returns a token representing the state to retrieve the next page of results.
Declaration
byte[] PagingState { get; }
Property Value
Type | Description |
---|---|
System.Byte[] |