IResultDataIO Interface

TODO: Interface for working the the data in the underlying file format, on a file based manner.

Definition

Namespace: DHI.Mike1D.ResultDataAccess
Assembly: DHI.Mike1D.ResultDataAccess (in DHI.Mike1D.ResultDataAccess.dll) Version: 24.0.0.0 (11.1.1.1111)
C#
public interface IResultDataIO

Methods

Close Close the file and release all ressources associated with it. The header information is still valid (for reading) even though the file has been closed.
ReadItemTimestep(IDataItem, Int32) Read the item and timestep from the file. Data is not loaded into the Res1D data structures.
ReadItemTimestep(IRes1DItemData, Int32) Read the item and timestep from the file. Data is not loaded into the Res1D data structures.
ReadItemTimestepNext Read the item and timestep from the file. Data is not loaded into the Res1D data structures.
ReadTimestep Read all items of the specified time step. Data is loaded into each seperate data item within the Res1D data structure
Reset Resets the storage pointer to point on the first dynamic item time step in the file.

Can also be used if it is required to restart reading the static items.

WriteItemTimestep

Writes the specified dynamic item-timestep data to the underlying storage.

WriteItemTimestepNext

Writes the next dynamic item-timestep data to the underlying storage

WriteTimestep Write all items of the specified time step. Data is taken from each seperate data item within the Res1D data structure. It is assumed that these data are available everywhere.

See Also