Class DataTableRowInfo
DataTableRowInfo captures information about a data table row including the name of the data table.
Implements
Namespace: Google.Backstory
Assembly: Google.Backstory.dll
Syntax
public sealed class DataTableRowInfo : IMessage<DataTableRowInfo>, IEquatable<DataTableRowInfo>, IDeepCloneable<DataTableRowInfo>, IBufferMessage, IMessage
Constructors
DataTableRowInfo()
Declaration
public DataTableRowInfo()
DataTableRowInfo(DataTableRowInfo)
Declaration
public DataTableRowInfo(DataTableRowInfo other)
Parameters
| Type | Name | Description |
|---|---|---|
| DataTableRowInfo | other |
Properties
DataTable
The name of data table.
Declaration
public string DataTable { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Row
Stores the key value pair for a data table row where the key is the name of the column for the given value.
Declaration
public Struct Row { get; set; }
Property Value
| Type | Description |
|---|---|
| Struct |
RowId
The row id of the data table row.
Declaration
public string RowId { get; set; }
Property Value
| Type | Description |
|---|---|
| string |