Skip Navigation Links.

H5T..::..getMemberType Method

Returns the datatype of the specified member. http://www.hdfgroup.org/HDF5/doc/RM/RM_H5T.html#Datatype-GetMemberType

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

Syntax

Visual Basic
Public Shared Function getMemberType ( _
	typeId As H5DataTypeId, _
	fieldIndex As Integer _
) As H5DataTypeId
C#
public static H5DataTypeId getMemberType(
	H5DataTypeId typeId,
	int fieldIndex
)
Visual C++
public:
static H5DataTypeId^ getMemberType(
	H5DataTypeId^ typeId, 
	int fieldIndex
)
JavaScript
HDF5DotNet.H5T.getMemberType = function(typeId, fieldIndex);

Parameters

typeId
Type: HDF5DotNet..::..H5DataTypeId
Identifier of datatype to query.
fieldIndex
Type: Int32
Field index (0-based) of the field type to retrieve.

Return Value

Returns the identifier of a copy of the datatype of the field if successful.

Remarks

H5Tget_member_type returns the datatype of the specified member. The caller should invoke H5Tclose() to release resources associated with the type.

Exceptions

ExceptionCondition
HDF5DotNet..::..H5TgetMemberTypeException throws H5TgetMemberTypeException on failure.

See Also