Skip Navigation Links.

H5T..::..commit Method (H5LocId, , H5DataTypeId)

Commits a transient datatype, linking it into the file and creating a new named datatype. http://www.hdfgroup.org/HDF5/doc/RM/RM_H5T.html#Datatype-Commit

Namespace:  HDF5DotNet
Assembly:  HDF5DotNet (in HDF5DotNet.dll)

Syntax

Visual Basic
Public Shared Sub commit ( _
	location As H5LocId, _
	dataTypeName As String, _
	typeId As H5DataTypeId _
)
C#
public static void commit(
	H5LocId location,
	string dataTypeName,
	H5DataTypeId typeId
)
Visual C++
public:
static void commit(
	H5LocId^ location, 
	String^ dataTypeName, 
	H5DataTypeId^ typeId
)
JavaScript
HDF5DotNet.H5T.commit = function(location, dataTypeName, typeId);

Parameters

location
Type: HDF5DotNet..::..H5LocId
IN: Location identifier
dataTypeName
Type: String
IN: Name given to committed datatype
typeId
Type: HDF5DotNet..::..H5DataTypeId
IN: Identifier of datatype to be committed

Return Value

void

Exceptions

ExceptionCondition
HDF5DotNet..::..H5TcommitException throws H5TcommitException on failure.

See Also