|
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.207-beta+1781b796b2aa7a54013a031eb432fe4ccee31867
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