Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
QueryNewTableEventArgs.cs
2{
7 {
8 private readonly string tableName;
9 private readonly Column[] columns;
10
19 : base(Query, TableId)
20 {
21 this.tableName = TableName;
22 this.columns = Columns;
23 }
24
28 public string TableName => this.tableName;
29
33 public Column[] Columns => this.columns;
34 }
35}
Defines a column in a table.
Definition: Column.cs:30
Class handling the reception of data from a query.
Definition: Query.cs:12
Base class for all query-related table events.
QueryNewTableEventArgs(Query Query, string TableId, string TableName, params Column[] Columns)
Base class for all query-related table events.
Base class for all query-related table events.