Class QueryField
Represents a TileDB query field object.
Implements
Namespace: TileDB.CSharp
Assembly: TileDB.CSharp.dll
Syntax
public sealed class QueryField : IDisposable
Properties
| Edit this page View SourceDataType
Gets the data type of the QueryField.
Declaration
public DataType DataType { get; }
Property Value
Type | Description |
---|---|
DataType |
Name
The name of the QueryField.
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
string |
Origin
Gets the origin of the QueryField.
Declaration
public QueryFieldOrigin Origin { get; }
Property Value
Type | Description |
---|---|
QueryFieldOrigin |
ValuesPerCell
Gets the number of values per cell of the QueryField.
Declaration
public uint ValuesPerCell { get; }
Property Value
Type | Description |
---|---|
uint |
Methods
| Edit this page View SourceDispose()
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
Declaration
public void Dispose()
GetChannel()
Gets the QueryChannel corresponding to the QueryField.
Declaration
public QueryChannel GetChannel()
Returns
Type | Description |
---|---|
QueryChannel |