Skip Navigation Links.

H5D..::..open Method (H5FileOrGroupId, , H5PropertyListId)

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

Syntax

Visual Basic
Public Shared Function open ( _
	groupOrFileId As H5FileOrGroupId, _
	dataSetName As String, _
	dataSetAccessPropertyList As H5PropertyListId _
) As H5DataSetId
C#
public static H5DataSetId open(
	H5FileOrGroupId groupOrFileId,
	string dataSetName,
	H5PropertyListId dataSetAccessPropertyList
)
Visual C++
public:
static H5DataSetId^ open(
	H5FileOrGroupId^ groupOrFileId, 
	String^ dataSetName, 
	H5PropertyListId^ dataSetAccessPropertyList
)
JavaScript
HDF5DotNet.H5D.open = function(groupOrFileId, dataSetName, dataSetAccessPropertyList);

Parameters

groupOrFileId
Type: HDF5DotNet..::..H5FileOrGroupId
IN: Identifier of the file or group within which the dataset to be accessed will be found.
dataSetName
Type: String
IN: The name of the dataset to access.
dataSetAccessPropertyList
Type: HDF5DotNet..::..H5PropertyListId
IN: Dataset access property list

Remarks

H5Dopen opens an existing dataset for access in the file or group specified in groupOrFileId. name is a dataset name and is used to identify the dataset in the file.

Exceptions

ExceptionCondition
HDF5DotNet..::..H5DopenException throws H5DopenException on failure.

See Also