 | ZWManagerRefreshNodeInfo Method |
Trigger the fetching of fixed data about a node.
Namespace:
OpenZWave
Assembly:
OpenZWave (in OpenZWave.dll) Version: 255.255.255.255
Syntaxpublic bool RefreshNodeInfo(
uint homeId,
byte nodeId
)
Public Function RefreshNodeInfo (
homeId As UInteger,
nodeId As Byte
) As Boolean
public:
virtual bool RefreshNodeInfo(
[InAttribute] unsigned int homeId,
[InAttribute] unsigned char nodeId
) sealed
Parameters
- homeId
- Type: SystemUInt32
The Home ID of the Z-Wave controller that manages the node. - nodeId
- Type: SystemByte
The ID of the node to query.
Return Value
Type:
BooleanTrue if the request was sent successfully.
Remarks
Causes the node's data to be obtained from the Z-Wave network in the same way as if it had just been added.
This method would normally be called automatically by OpenZWave, but if you know that a node has been
changed, calling this method will force a refresh of the data held by the library. This can be especially
useful for devices that were asleep when the application was first run.
See Also