Google Bigtable v2 API - Class Row (3.13.0)

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

Reference documentation and code samples for the Google Bigtable v2 API class Row.

Specifies the complete (requested) contents of a single row of a table. Rows which exceed 256MiB in size cannot be read in full.

Inheritance

object > Row

Namespace

Google.Cloud.Bigtable.V2

Assembly

Google.Cloud.Bigtable.V2.dll

Constructors

Row()

public Row()

Row(Row)

public Row(Row other)
Parameter
Name Description
other Row

Properties

Families

public RepeatedField<Family> Families { get; }

May be empty, but only if the entire row is empty. The mutual ordering of column families is not specified.

Property Value
Type Description
RepeatedFieldFamily

Key

public ByteString Key { get; set; }

The unique key which identifies this row within its table. This is the same key that's used to identify the row in, for example, a MutateRowRequest. May contain any non-empty byte string up to 4KiB in length.

Property Value
Type Description
ByteString