ILNumerics Ultimate VS

H5GroupGetT Method

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development
Get a typed object by path / name

[ILNumerics HDF5 Module]

Namespace:  ILNumerics.IO.HDF5
Assembly:  ILNumerics.IO.HDF5 (in ILNumerics.IO.HDF5.dll) Version: 5.5.0.0 (5.5.7503.3146)
Syntax

public T Get<T>(
	string relativePath
)
where T : H5Object

Parameters

relativePath
Type: SystemString
path used to identify the object

Type Parameters

T
the type of the object to be returned

Return Value

Type: T
The object referenced by relativePath or null, if no matching object was found
Remarks

This function is used to retrieve an object by its name. If a matching object was found, it is returned as the type given for T.

In difference to the extension method FirstObjT(H5Group, String, Boolean, Boolean, PredicateObjT) Get(string) does not filter for the type specified. It rather interprets the object found as of type T and returns null if the types do not match. Furthermore, Get(string) does not allow the definition of predicates nor does it recursive retrievals. Therefore, one may consider Get(string) a cheaper low level alternative to First().

[ILNumerics HDF5 Module]

See Also

Reference