ILNumerics - Technical Application Development
Assembly: ILNumerics.IO.HDF5 (in ILNumerics.IO.HDF5.dll) Version: 5.5.0.0 (5.5.7503.3146)
The object referenced by relativePath or null, if no matching object was found
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.
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
Parameters
- relativePath
- Type: SystemString
path used to identify the object
Type Parameters
- T
- the type of the object to be returned
Return Value
Type: TThe object referenced by relativePath or null, if no matching object was found
Remarks
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