|
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.300-beta+b2186e2cd1f968c931b0e151fdd7c839f3d1e9cf
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