Skip Navigation Links.

H5AutoCallback Delegate

Callback invoked when error conditions occur (see setAuto).

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

Syntax

Visual Basic
Public Delegate Function H5AutoCallback ( _
	estackId As Integer, _
	alloc_info As IntPtr _
) As Integer
C#
public delegate int H5AutoCallback(
	int estackId,
	IntPtr alloc_info
)
Visual C++
public delegate int H5AutoCallback(
	int estackId, 
	IntPtr alloc_info
)
JavaScript
function(estackId, alloc_info);

Parameters

estackId
Type: Int32
IN: Error stack identifier.
alloc_info
Type: IntPtr
IN: Data passed to the error function. Note that this memory, and all memory used with void* must be pinned or otherwise immune to garbage collection or rellocation.

See Also