Skip Navigation Links.

H5L..::..get_val Method

Returns the value of a symbolic link. http://www.hdfgroup.org/HDF5/doc/RM/RM_H5L.html#Link-GetVal. The buffer returned by this method must be freed with FreeHGlobal, otherwise. resource leakage will occur. http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.marshal.freehglobal.aspx.

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

Syntax

Visual Basic
Public Shared Function get_val ( _
	fileOrGroupId As H5FileOrGroupId, _
	linkName As String, _
	linkAccessPropertyList As H5PropertyListId _
) As IntPtr
C#
public static IntPtr get_val(
	H5FileOrGroupId fileOrGroupId,
	string linkName,
	H5PropertyListId linkAccessPropertyList
)
Visual C++
public:
static IntPtr get_val(
	H5FileOrGroupId^ fileOrGroupId, 
	String^ linkName, 
	H5PropertyListId^ linkAccessPropertyList
)
JavaScript
HDF5DotNet.H5L.get_val = function(fileOrGroupId, linkName, linkAccessPropertyList);

Parameters

fileOrGroupId
Type: HDF5DotNet..::..H5FileOrGroupId
linkName
Type: String
linkAccessPropertyList
Type: HDF5DotNet..::..H5PropertyListId

See Also