Class Domain
Assembly: TileDB.CSharp.dll
Syntax
public sealed class Domain : IDisposable
Constructors
|
Edit this page
View Source
Domain(Context)
Declaration
public Domain(Context ctx)
Parameters
Methods
|
Edit this page
View Source
AddDimension(Dimension)
Declaration
public void AddDimension(Dimension d)
Parameters
|
Edit this page
View Source
AddDimensions(params Dimension[])
Declaration
public void AddDimensions(params Dimension[] d)
Parameters
|
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
|
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
|
Edit this page
View Source
Dispose()
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
Declaration
|
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
|
Edit this page
View Source
NDim()
Get number of dimensions.
Declaration
Returns
|
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
|
Edit this page
View Source
Type()
Get type of homogenous dimensions. Will throw exception for heterogeneous dimensions.
Declaration
Returns
Implements