Class QueryResult (3.1.0)

public sealed class QueryResult : IMessage<QueryResult>, IEquatable<QueryResult>, IDeepCloneable<QueryResult>, IBufferMessage, IMessage

Execution results of the query.

The result is formatted as rows represented by BigQuery compatible [schema]. When pagination is necessary, it will contains the page token to retrieve the results of following pages.

Inheritance

Object > QueryResult

Namespace

Google.Cloud.Asset.V1

Assembly

Google.Cloud.Asset.V1.dll

Constructors

QueryResult()

public QueryResult()

QueryResult(QueryResult)

public QueryResult(QueryResult other)
Parameter
NameDescription
otherQueryResult

Properties

NextPageToken

public string NextPageToken { get; set; }

Token to retrieve the next page of the results.

Property Value
TypeDescription
String

Rows

public RepeatedField<Struct> Rows { get; }

Each row hold a query result in the format of Struct.

Property Value
TypeDescription
RepeatedField<Struct>

Schema

public TableSchema Schema { get; set; }

Describes the format of the [rows].

Property Value
TypeDescription
TableSchema

TotalRows

public long TotalRows { get; set; }

Total rows of the whole query results.

Property Value
TypeDescription
Int64