Show / Hide Table of Contents

Class Domain

Inheritance
object
Domain
Implements
IDisposable
Namespace: TileDB.CSharp
Assembly: TileDB.CSharp.dll
Syntax
public sealed class Domain : IDisposable

Constructors

| Edit this page View Source

Domain(Context)

Declaration
public Domain(Context ctx)
Parameters
Type Name Description
Context ctx

Methods

| Edit this page View Source

AddDimension(Dimension)

Add a dimension.

Declaration
public void AddDimension(Dimension d)
Parameters
Type Name Description
Dimension d
| Edit this page View Source

AddDimensions(params Dimension[])

Add dimensions.

Declaration
public void AddDimensions(params Dimension[] d)
Parameters
Type Name Description
Dimension[] d
| Edit this page View Source

Dimension(string)

Get a dimension from name.

Declaration
public Dimension Dimension(string name)
Parameters
Type Name Description
string name
Returns
Type Description
Dimension
| Edit this page View Source

Dimension(uint)

Get a dimension from index.

Declaration
public Dimension Dimension(uint index)
Parameters
Type Name Description
uint index
Returns
Type Description
Dimension
| Edit this page View Source

Dispose()

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

Declaration
public void Dispose()
| Edit this page View Source

HasDimension(string)

Test if a dimension with name exists or not.

Declaration
public bool HasDimension(string name)
Parameters
Type Name Description
string name
Returns
Type Description
bool
| Edit this page View Source

NDim()

Get number of dimensions.

Declaration
public uint NDim()
Returns
Type Description
uint
| Edit this page View Source

ToString()

Returns a string that represents the current object.

Declaration
public override string ToString()
Returns
Type Description
string

A string that represents the current object.

Overrides
object.ToString()
| Edit this page View Source

Type()

Get type of homogenous dimensions. Will throw exception for heterogeneous dimensions.

Declaration
public DataType Type()
Returns
Type Description
DataType

Implements

IDisposable
  • Edit this page
  • View Source
In this article
Back to top Copyright © 2018-2023 TileDB Inc.