Show / Hide Table of Contents

Class H5AttributableObject

A base class for types that can hold HDF5 attributes.

Inheritance
System.Object
H5Object
H5AttributableObject
H5CommitedDatatype
H5CommitedDatatype
H5Dataset
H5Dataset
H5Group
H5Group
Inherited Members
H5Object.Name
Namespace: HDF5.NET
Assembly: HDF5.NET.dll
Syntax
public abstract class H5AttributableObject : H5Object

Properties

| Improve this Doc View Source

Attributes

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 Source

Attribute(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.

| Improve this Doc View Source

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.

  • Improve this Doc
  • View Source
In This Article
Back to top Copyright © 2023 Vincent Wilms