| 
            
              IsamDataFileBaseTWrite(IEnumerableT) Method
             | 
          
        
        
            Writes specified records to disk if records were not loaded in memory otherwise updates the records in memory.
            
        
        Namespace: GSF.IOAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
Syntaxpublic virtual void Write(
	IEnumerable<T> records
)
Public Overridable Sub Write ( 
	records As IEnumerable(Of T)
)
public:
virtual void Write(
	IEnumerable<T>^ records
)
abstract Write : 
        records : IEnumerable<'T> -> unit 
override Write : 
        records : IEnumerable<'T> -> unit  View SourceParameters
- records  IEnumerableT
 - Records to be written.
 
Remarks
            This operation will causes existing records to be deleted and replaced with the ones specified.
            
See Also