Table of Contents

Class H5NativeWriter

Namespace
PureHDF
Assembly
PureHDF.dll

A writer for HDF5 files.

public class H5NativeWriter : IDisposable
Inheritance
H5NativeWriter
Implements

Properties

File

The associated H5File instance.

public H5File File { get; }

Property Value

H5File

Methods

Dispose()

public void Dispose()

Dispose(bool)

protected virtual void Dispose(bool disposing)

Parameters

disposing bool

Write<T>(H5Dataset<T>, T, Selection?, Selection?)

Write data to the specified dataset.

public void Write<T>(H5Dataset<T> dataset, T data, Selection? memorySelection = null, Selection? fileSelection = null)

Parameters

dataset H5Dataset<T>

The dataset to write data to.

data T

The data to write.

memorySelection Selection

The memory selection.

fileSelection Selection

The file selection.

Type Parameters

T

The data type.