|   | ArchiveDataBlockWrite(IDataPoint, Boolean) Method | 
        
        
        
        Namespace: GSF.Historian.FilesAssembly: GSF.Historian (in GSF.Historian.dll) Version: 2.4.257-beta
 Syntax
Syntaxpublic bool Write(
	IDataPoint dataPoint,
	bool suppressExceptions = false
)
Public Function Write ( 
	dataPoint As IDataPoint,
	Optional suppressExceptions As Boolean = false
) As Boolean
public:
bool Write(
	IDataPoint^ dataPoint, 
	bool suppressExceptions = false
)
member Write : 
        dataPoint : IDataPoint * 
        ?suppressExceptions : bool 
(* Defaults:
        let _suppressExceptions = defaultArg suppressExceptions false
*)
-> bool function Write(dataPoint, suppressExceptions);
Parameters
- dataPoint  IDataPoint
- IDataPoint to write.
- suppressExceptions  Boolean  (Optional)
- Set to true to suppress write exceptions; defaults to false.
Return Value
Booleantrue if data point was written; otherwise, 
false.
            
 Remarks
Remarks
            If suppressExceptions is false, the default value, any encountered
            exception will be thrown on the call stack.
            
 See Also
See Also