|
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.258-beta+f8b6aa3dbfe0b4cc2b0b0760dd5d2a3dd4f59d09
Syntaxpublic 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