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
Methods
Dispose()
public void Dispose()
Dispose(bool)
protected virtual void Dispose(bool disposing)
Parameters
disposingbool
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
datasetH5Dataset<T>The dataset to write data to.
dataTThe data to write.
memorySelectionSelectionThe memory selection.
fileSelectionSelectionThe file selection.
Type Parameters
TThe data type.