Click or drag to resize

NexusExtensionsGetChildObjectNamedT Method

Gets the child object that is named with the given name.

Namespace: Altaxo.Serialization.HDF5.Nexus
Assembly: AltaxoDom (in AltaxoDom.dll) Version: 4.8.3261.0 (4.8.3261.0)
Syntax
C#
public static T GetChildObjectNamed<T>(
	this IH5Group group,
	string name
)
where T : class, IH5Object

Parameters

group  IH5Group
The group.
name  String
The name that is searched.

Type Parameters

T
Type of HDF5 object that is expected

Return Value

T
The object of type T with the given name, or null if no such object was found.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IH5Group. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also