Class Table
A table.
[DataContract(IsReference = true)]
public class Table
- Inheritance
-
Table
- Inherited Members
Constructors
Table(int, string, DateTime, string, string)
Initializes a new instance of the Table class.
public Table(int tableId, string name, DateTime updateDateTime, string userName, string data)
Parameters
tableIdintThe unique identifier for this table.
namestringThe table name.
updateDateTimeDateTimeThe date and time this table was last updated.
userNamestringThe name of the user who last updated this table.
datastringThe table data, as CSV.
Exceptions
- ArgumentNullException
nameis null.- ArgumentNullException
userNameis null.- ArgumentNullException
datais null.
Properties
Data
Gets the table data, as CSV.
[DataMember]
public string Data { get; }
Property Value
Name
Gets the table name.
[DataMember]
public string Name { get; }
Property Value
TableId
Gets the unique identifier for this table.
[DataMember]
public int TableId { get; }
Property Value
UpdateDateTime
Gets the date and time this table was last updated.
[DataMember]
public DateTime UpdateDateTime { get; }
Property Value
UserName
Gets the name of the user who last updated this table.
[DataMember]
public string UserName { get; }