Show / Hide Table of Contents

Class Page<T>

Represents page of objects. https://www.stellar.org/developers/horizon/reference/resources/page.html

Inheritance
System.Object
Response
Page<T>
Inherited Members
Response.RateLimitLimit
Response.RateLimitRemaining
Response.RateLimitReset
Response.SetHeaders(HttpResponseHeaders)
Namespace: System.Dynamic.ExpandoObject
Assembly: stellar-dotnet-sdk.dll
Syntax
public class Page<T> : Response
Type Parameters
T

Properties

Embedded

Declaration
public Page<T>.EmbeddedRecords Embedded { get; set; }
Property Value
Page.EmbeddedRecords<>

Links

Declaration
public PageLinks<T> Links { get; }
Property Value
PageLinks<T>

Records

Declaration
public List<T> Records { get; }
Property Value
List<T>

Methods

NextPage()

The next page of results or null when there is no more results

Declaration
public Task<Page<T>> NextPage()
Returns
Task<Page<T>>

PreviousPage()

The previous page of results or null when there is no more results

Declaration
public Task<Page<T>> PreviousPage()
Returns
Task<Page<T>>

Back to top Generated by DocFX