Table of Contents

Class QueryResult<T>

Namespace
NetCoreForce.Client.Models
Assembly
NetCoreForce.Client.dll
public class QueryResult<T>

Type Parameters

T
Inheritance
QueryResult<T>
Inherited Members

Properties

Done

TRUE if the end of the result batch has been reached.

[JsonProperty(PropertyName = "done")]
public bool Done { get; set; }

Property Value

bool

NextRecordsUrl

Continuation link, when there are additional results to retrieve

[JsonProperty(PropertyName = "nextRecordsUrl")]
public string NextRecordsUrl { get; set; }

Property Value

string

Records

Array of object results in this batch

[JsonProperty(PropertyName = "records")]
public List<T> Records { get; set; }

Property Value

List<T>

TotalSize

Total number of records in result batch

[JsonProperty(PropertyName = "totalSize")]
public int TotalSize { get; set; }

Property Value

int