Struct H5DatasetCreation
A structure which controls how the dataset is created. Reference: hdfgroup.org
public readonly struct H5DatasetCreation : IEquatable<H5DatasetCreation>
- Implements
Constructors
H5DatasetCreation(IWritingChunkCache?, List<H5Filter>?)
A structure which controls how the dataset is created. Reference: hdfgroup.org
public H5DatasetCreation(IWritingChunkCache? ChunkCache = null, List<H5Filter>? Filters = null)
Parameters
ChunkCacheIWritingChunkCacheThe chunk cache used for writing. If null, the value of the DefaultWritingChunkCacheFactory property is used instead.
FiltersList<H5Filter>A list of filters and their options to be applied to a chunk being written to the stream. If null, the value of the Filters property is used instead.
Properties
ChunkCache
The chunk cache used for writing. If null, the value of the DefaultWritingChunkCacheFactory property is used instead.
public IWritingChunkCache? ChunkCache { get; init; }
Property Value
Filters
A list of filters and their options to be applied to a chunk being written to the stream. If null, the value of the Filters property is used instead.
public List<H5Filter>? Filters { get; init; }
Property Value
Methods
Deconstruct(out IWritingChunkCache?, out List<H5Filter>?)
public void Deconstruct(out IWritingChunkCache? ChunkCache, out List<H5Filter>? Filters)
Parameters
ChunkCacheIWritingChunkCacheFiltersList<H5Filter>
Equals(H5DatasetCreation)
public bool Equals(H5DatasetCreation other)
Parameters
otherH5DatasetCreation
Returns
Equals(object)
public override bool Equals(object obj)
Parameters
objobject
Returns
GetHashCode()
public override int GetHashCode()
Returns
ToString()
public override string ToString()
Returns
Operators
operator ==(H5DatasetCreation, H5DatasetCreation)
public static bool operator ==(H5DatasetCreation left, H5DatasetCreation right)
Parameters
leftH5DatasetCreationrightH5DatasetCreation
Returns
operator !=(H5DatasetCreation, H5DatasetCreation)
public static bool operator !=(H5DatasetCreation left, H5DatasetCreation right)
Parameters
leftH5DatasetCreationrightH5DatasetCreation