Class H5AttributableObject
A base class for types that can hold HDF5 attributes.
Inheritance
System.Object
H5AttributableObject
Inherited Members
Namespace: HDF5.NET
Assembly: HDF5.NET.dll
Syntax
public abstract class H5AttributableObject : H5Object
Properties
| Improve this Doc View SourceAttributes
Gets an enumerable of the available attributes.
Declaration
public IEnumerable<H5Attribute> Attributes { get; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.IEnumerable<H5Attribute> |
Methods
| Improve this Doc View SourceAttribute(String)
Gets the attribute named name.
Declaration
public H5Attribute Attribute(string name)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | The name of the attribute. |
Returns
| Type | Description |
|---|---|
| H5Attribute | The requested attribute. |
AttributeExists(String)
Checks if the attribute with the specified name exist.
Declaration
public bool AttributeExists(string name)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | The name of the attribute. |
Returns
| Type | Description |
|---|---|
| System.Boolean | A boolean which indicates if the attribute exists. |