|
IsamDataFileBaseTWrite(Int32, T) Method
|
Writes specified record to disk if records were not loaded in memory otherwise updates the record in memory.
Namespace: GSF.IOAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.220-beta+a56b2444ff27b37e053039e60f062b99378309bd
Syntax public virtual void Write(
int recordIndex,
T record
)
Public Overridable Sub Write (
recordIndex As Integer,
record As T
)
public:
virtual void Write(
int recordIndex,
T record
)
abstract Write :
recordIndex : int *
record : 'T -> unit
override Write :
recordIndex : int *
record : 'T -> unit
function Write(recordIndex, record);
View SourceParameters
- recordIndex Int32
- 1-based index of the record to be written.
- record T
- Record to be written.
See Also