Class FluxTable
This class represents table structure of Flux CSV Response. Specification.
Inheritance
System.Object
FluxTable
Namespace: InfluxDB.Client.Core.Flux.Domain
Assembly: InfluxDB.Client.Core.dll
Syntax
public class FluxTable : object
Properties
Columns
Table column's labels and types.
Declaration
public List<FluxColumn> Columns { get; }
Property Value
Type | Description |
---|---|
List<FluxColumn> |
Records
Table records.
Declaration
public List<FluxRecord> Records { get; }
Property Value
Type | Description |
---|---|
List<FluxRecord> |
Methods
GetGroupKey()
A table's group key is subset of the entire columns dataset that assigned to the table. As such, all records within a table will have the same values for each column that is part of the group key.
Declaration
public List<FluxColumn> GetGroupKey()
Returns
Type | Description |
---|---|
List<FluxColumn> |
ToString()
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String |