Show / Hide Table of Contents

Class Table

A single table.

Inheritance
System.Object
Table
Implements
Google.Protobuf.IMessage<Table>
System.IEquatable<Table>
Google.Protobuf.IDeepCloneable<Table>
Google.Protobuf.IBufferMessage
Google.Protobuf.IMessage
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Area120.Tables.V1Alpha1
Assembly: Google.Area120.Tables.V1Alpha1.dll
Syntax
public sealed class Table : IMessage<Table>, IEquatable<Table>, IDeepCloneable<Table>, IBufferMessage, IMessage

Constructors

Table()

Declaration
public Table()

Table(Table)

Declaration
public Table(Table other)
Parameters
Type Name Description
Table other

Properties

Columns

List of columns in this table. Order of columns matches the display order.

Declaration
public RepeatedField<ColumnDescription> Columns { get; }
Property Value
Type Description
Google.Protobuf.Collections.RepeatedField<ColumnDescription>

DisplayName

The human readable title of the table.

Declaration
public string DisplayName { get; set; }
Property Value
Type Description
System.String

Name

The resource name of the table. Table names have the form tables/{table}.

Declaration
public string Name { get; set; }
Property Value
Type Description
System.String

TableName

TableName-typed view over the Name resource name property.

Declaration
public TableName TableName { get; set; }
Property Value
Type Description
TableName
Back to top