Class Row (2.5.0)

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

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
NameDescription
otherRow

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
TypeDescription
RepeatedField<Family>

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
TypeDescription
ByteString