Class ResultSize
Contains estimates for the result's size.
Namespace: TileDB.CSharp
Assembly: TileDB.CSharp.dll
Syntax
public class ResultSize
Constructors
| Edit this page View SourceResultSize(ulong, ulong?, ulong?)
Constructor.
Declaration
public ResultSize(ulong dataSize, ulong? offsetsSize = null, ulong? validitySize = null)
Parameters
Type | Name | Description |
---|---|---|
ulong | dataSize | |
ulong? | offsetsSize | |
ulong? | validitySize |
Fields
| Edit this page View SourceDataBytesSize
The data size in bytes.
Declaration
public ulong DataBytesSize
Field Value
Type | Description |
---|---|
ulong |
OffsetsBytesSize
The offsets size in bytes.
Declaration
public ulong? OffsetsBytesSize
Field Value
Type | Description |
---|---|
ulong? |
ValidityBytesSize
The validities size in bytes.
Declaration
public ulong? ValidityBytesSize
Field Value
Type | Description |
---|---|
ulong? |
Methods
| Edit this page View SourceDataSize(DataType)
Gets the number of data elements.
Declaration
public ulong DataSize(DataType dataType)
Parameters
Type | Name | Description |
---|---|---|
DataType | dataType | The data type of the attribute or dimension. |
Returns
Type | Description |
---|---|
ulong |
IsNullable()
Returns if the result is about a nullable attribute.
Declaration
public bool IsNullable()
Returns
Type | Description |
---|---|
bool |
IsVarSize()
Returns if the result is about a variable-length attribute or dimension.
Declaration
public bool IsVarSize()
Returns
Type | Description |
---|---|
bool |
OffsetsSize()
Gets the number of offsets.
Declaration
public ulong OffsetsSize()
Returns
Type | Description |
---|---|
ulong |
ValiditySize()
Gets the number of validities.
Declaration
public ulong ValiditySize()
Returns
Type | Description |
---|---|
ulong |