Show / Hide Table of Contents

    Delegate H5L.iterate_t

    Prototype for H5Literate/H5Literate_by_name() operator

    Namespace: HDF.PInvoke
    Assembly: HDF.PInvoke.dll
    Syntax
    public delegate System.Int32 iterate_t(System.Int64 group, IntPtr name, ref H5L.info_t info, IntPtr op_data);
    Parameters
    Type Name Description
    System.Int64 group

    Group that serves as root of the iteration

    IntPtr name

    Name of link, relative to group, being examined at current step of the iteration

    H5L.info_t info
    H5L.info_t
    struct containing
    information regarding that link
    
    IntPtr op_data

    User-defined pointer to data required by the application in processing the link

    Returns
    Type Description
    System.Int32

    Zero causes the visit iterator to continue, returning zero when all group members have been processed. A positive value causes the visit iterator to immediately return that positive value, indicating short-circuit success. A negative value causes the visit iterator to immediately return that value, indicating failure.

    • Improve this Doc
    • View Source
    Back to top Generated by DocFX