The Node property provides the name of the node in which the network interface is installed.
| Type: | Null-terminated Unicode string | 
| Access: | Read-only | 
| Function: | ClusterNetInterfaceControl | 
| Structure: | CLUSPROP_SZ | 
| Control Code: | CLUSCTL_NETINTERFACE_GET_RO_COMMON_PROPERTIES | 
When ClusterNetworkControl processes the CLUSCTL_NETWORK_GET_RO_COMMON_PROPERTIES control code, it returns a property list that includes the Node property as one of the entries. The property value portion of the entry contains a CLUSPROP_SZ structure that is set as follows:
CLUSPROP_SZ NodeValue;
LPCWSTR NodeData = L "NODE1";
NodeValue.Syntax = CLUSPROP_SYNTAX_LIST_VALUE_SZ;
NodeValue.cbLength = sizeof(NodeData);
lstrcpyW(NodeValue.sz, NodeData);
 Because the Node property is read-only, it cannot be changed using the CLUSCTL_NETINTERFACE_SET_COMMON_PROPERTIES control code.
  Version: Use Windows NT Server Enterprise Edition 4.0.
  Windows CE: Unsupported.
  Header: Declared in clusapi.h.