| 
            
              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.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
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