Skip Navigation Links.

H5L..::..getInfoByIndex Method (H5FileOrGroupId, , H5IndexType, H5IterationOrder, )

Retrieves metadata for a link in a group, according to the order within a field or index. http://www.hdfgroup.org/HDF5/doc/RM/RM_H5L.html#Link-GetInfoByIdx

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

Syntax

Visual Basic
Public Shared Function getInfoByIndex ( _
	fileOrGroupId As H5FileOrGroupId, _
	groupName As String, _
	indexType As H5IndexType, _
	iterationOrder As H5IterationOrder, _
	position As Long _
) As H5LinkInfo
C#
public static H5LinkInfo getInfoByIndex(
	H5FileOrGroupId fileOrGroupId,
	string groupName,
	H5IndexType indexType,
	H5IterationOrder iterationOrder,
	long position
)
Visual C++
public:
static H5LinkInfo^ getInfoByIndex(
	H5FileOrGroupId^ fileOrGroupId, 
	String^ groupName, 
	H5IndexType indexType, 
	H5IterationOrder iterationOrder, 
	long long position
)
JavaScript
HDF5DotNet.H5L.getInfoByIndex = function(fileOrGroupId, groupName, indexType, iterationOrder, position);

Parameters

fileOrGroupId
Type: HDF5DotNet..::..H5FileOrGroupId
IN: File or group identifier specifying location of subject group
groupName
Type: String
IN: Name of subject group
indexType
Type: HDF5DotNet..::..H5IndexType
IN: Index or field which determines the order
iterationOrder
Type: HDF5DotNet..::..H5IterationOrder
IN: Order within field or index
position
Type: Int64
IN: Link for which to retrieve information

Return Value

H5LinkInfo

Exceptions

ExceptionCondition
HDF5DotNet..::..H5LgetInfoByIndexException throws H5LgetInfoByIndexException on failure.

See Also