Skip Navigation Links.

H5O..::..getInfoByName Method (H5Id, , H5PropertyListId)

Retrieves the metadata for an object, identifying the object by location and relative name. http://www.hdfgroup.org/HDF5/doc/RM/RM_H5O.html#Object-GetInfoByName

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

Syntax

Visual Basic
Public Shared Function getInfoByName ( _
	objectId As H5Id, _
	name As String, _
	linkAccessPropertyListId As H5PropertyListId _
) As H5ObjectInfo
C#
public static H5ObjectInfo getInfoByName(
	H5Id objectId,
	string name,
	H5PropertyListId linkAccessPropertyListId
)
Visual C++
public:
static H5ObjectInfo^ getInfoByName(
	H5Id^ objectId, 
	String^ name, 
	H5PropertyListId^ linkAccessPropertyListId
)
JavaScript
HDF5DotNet.H5O.getInfoByName = function(objectId, name, linkAccessPropertyListId);

Parameters

objectId
Type: HDF5DotNet..::..H5Id
IN: File or group identifier specifying location of group in which object is located
name
Type: String
IN: Name of group, relative to loc_id
linkAccessPropertyListId
Type: HDF5DotNet..::..H5PropertyListId
IN: Link access property list

Return Value

H5ObjectInfo

Exceptions

ExceptionCondition
HDF5DotNet..::..H5OgetInfoByNameException throws H5OgetInfoByNameException on failure.

See Also