| 
            
              PhysicalWriterWriteRecord Method
             | 
          
        
        
            Writes the given record to the PQDIF file.
            
        
        Namespace: GSF.PQDIF.PhysicalAssembly: GSF.PQDIF (in GSF.PQDIF.dll) Version: 2.4.257-beta
Syntaxpublic void WriteRecord(
	Record record,
	bool lastRecord = false
)
Public Sub WriteRecord ( 
	record As Record,
	Optional lastRecord As Boolean = false
)
public:
void WriteRecord(
	Record^ record, 
	bool lastRecord = false
)
member WriteRecord : 
        record : Record * 
        ?lastRecord : bool 
(* Defaults:
        let _lastRecord = defaultArg lastRecord false
*)
-> unit function WriteRecord(record, lastRecord);
 View SourceParameters
- record  Record
 - The record to be written to the file.
 - lastRecord  Boolean  (Optional)
 - Indicates whether this record is the last record in the file.
 
See Also