.Net API Set Functions¶
setDouble¶
void setDouble(String^ path, double value)
Set the value as double for a specified node.
The command blocks until the data server has acknowledgement the set request.
Parameters
Name | Type | Direction | Description |
---|---|---|---|
path | String^ | in | Path to the node holding the value |
value | double | in | Value of the node. |
setDouble¶
void setDouble(String^ path, double value)
Set the value as double for a specified node.
Parameters
Name | Type | Direction | Description |
---|---|---|---|
path | String^ | in | Path to the node holding the value |
value | double | in | Value of the node. |
setComplex¶
void setComplex(String^ path, Complex^ value)
Set the value as complex double for a specified node.
The command blocks until the data server has acknowledgement the set request.
Parameters
Name | Type | Direction | Description |
---|---|---|---|
path | String^ | in | Path to the node holding the value |
value | Complex^ | in | Value of the node. |
setInt¶
void setInt(String^ path, int64_t value)
Set the value as integer for a specified node.
The command blocks until the data server has acknowledgement the set request.
Parameters
Name | Type | Direction | Description |
---|---|---|---|
path | String^ | in | Path to the node holding the value |
value | int64_t | in | Value of the node. |
setInt¶
void setInt(String^ path, int64_t value)
Set the value as integer for a specified node.
Parameters
Name | Type | Direction | Description |
---|---|---|---|
path | String^ | in | Path to the node holding the value |
value | int64_t | in | Value of the node. |
setByte¶
void setByte(String^ path, String^ value)
Set the value as byte array (string) for a specified node.
The command blocks until the data server has acknowledgement the set request.
Parameters
Name | Type | Direction | Description |
---|---|---|---|
path | String^ | in | Path to the node holding the value |
value | String^ | in | Value of the node. |
setByte¶
void setByte(String^ path, String^ value)
Set the value as byte array (string) for a specified node.
Parameters
Name | Type | Direction | Description |
---|---|---|---|
path | String^ | in | Path to the node holding the value |
value | String^ | in | Value of the node. |
setString¶
void setString(String^ path, String^ value)
Set the value as string for a specified node.
The command blocks until the data server has acknowledgement the set request.
Parameters
Name | Type | Direction | Description |
---|---|---|---|
path | String^ | in | Path to the node holding the value |
value | String^ | in | Value of the node. |
setString¶
void setString(String^ path, String^ value)
Set the value as string for a specified node.
Parameters
Name | Type | Direction | Description |
---|---|---|---|
path | String^ | in | Path to the node holding the value |
value | String^ | in | Value of the node. |
syncSetDouble¶
void syncSetDouble(String^ path, double value)
Synchronously set the value as byte array (string) for a specified node.
Synchronously means that the command is blocking until the device has acknowledged the set request.
Parameters
Name | Type | Direction | Description |
---|---|---|---|
path | String^ | in | Path to the node holding the value |
value | double | in | Value of the node. |
syncSetInt¶
void syncSetInt(String^ path, int64_t value)
Synchronously set the value as integer for a specified node.
Synchronously means that the command is blocking until the device has acknowledged the set request.
Parameters
Name | Type | Direction | Description |
---|---|---|---|
path | String^ | in | Path to the node holding the value |
value | int64_t | in | Value of the node. |
syncSetByte¶
void syncSetByte(String^ path, String^ value)
Synchronously set the value as byte array (string) for a specified node.
Synchronously means that the command is blocking until the device has acknowledged the set request.
Parameters
Name | Type | Direction | Description |
---|---|---|---|
path | String^ | in | Path to the node holding the value |
value | String^ | in | Value of the node. |
syncSetString¶
void syncSetString(String^ path, String^ value)
Synchronously set the value as string for a specified node.
Synchronously means that the command is blocking until the device has acknowledged the set request.
Parameters
Name | Type | Direction | Description |
---|---|---|---|
path | String^ | in | Path to the node holding the value |
value | String^ | in | Value of the node. |
setVector¶
void setVector(String^ path, ZIVector^ vector)
Sets a parameter to the specified vector.
This function is used to configure (set) parameters which have vector types.
Parameters
Name | Type | Direction | Description |
---|---|---|---|
path | String^ | in | Path of the module parameter to set. |
vector | ZIVector^ | in | Vector data. |
setVector¶
void setVector(String^ path, ZIVector^ vector)
Sets a parameter to the specified vector.
This function is used to configure (set) parameters which have vector types.
Parameters
Name | Type | Direction | Description |
---|---|---|---|
path | String^ | in | Path of the module parameter to set. |
vector | ZIVector^ | in | Vector data. |