SendValues Method
- Last UpdatedAug 21, 2026
- 1 minute read
Use the SendValues() method to perform a data value insert, a single point update, or a multi-point update.
'Declaration
Public Function SendValues( _
ByVal dataValueList As HistorianDataValueList, _
ByRef error As HistorianAccessError _
) As Boolean
'Usage
Dim instance As HistorianAccess
Dim dataValueList As HistorianDataValueList
Dim error As HistorianAccessError
Dim value As Boolean
value = instance.SendValues(dataValueList, error)
public bool SendValues(
HistorianDataValueList dataValueList,
out HistorianAccessError error
)
public:
bool SendValues(
HistorianDataValueList^ dataValueList,
[Out] HistorianAccessError^ error
)
Parameters
- dataValueList
- The list objects of HistorianDataValue, which contains the data value list for the transaction.
- error
- This is the object of HistorianAccessError that stores the error information, if any.
Return Value
Returns true if the connection was successful; otherwise, false.