Google BigQuery v2 API - Class ListRowsOptions (3.9.0)

public sealed class ListRowsOptions

Reference documentation and code samples for the Google BigQuery v2 API class ListRowsOptions.

Options for ListRows operations.

Inheritance

object > ListRowsOptions

Namespace

Google.Cloud.BigQuery.V2

Assembly

Google.Cloud.BigQuery.V2.dll

Properties

PageSize

public int? PageSize { get; set; }

The number of results to return per page. (This modifies the per-request page size; it does not affect the total number of results returned.)

Property Value
TypeDescription
int

PageToken

public string PageToken { get; set; }

Page token, returned by a previous call, identifying the result set. If this property is non-null, StartIndex must be null.

Property Value
TypeDescription
string

StartIndex

public ulong? StartIndex { get; set; }

Zero-based index of the starting row to read. If this property is non-null, PageToken must be null.

Property Value
TypeDescription
ulong

UseInt64Timestamp

public bool? UseInt64Timestamp { get; set; }

Whether to use 64-bit integers for timestamps, instead of floating point, in order to preserve precision. If not set, this is effectively true.

Property Value
TypeDescription
bool