The Network property describes the network for which the IP address is to be created.
| Type: | Null-terminated Unicode string | 
| Access: | Read/write | 
| Status: | Required | 
| Function: | ClusterResourceControl | 
| Structure: | CLUSPROP_SZ | 
| Control Code: | CLUSCTL_RESOURCE_GET_PRIVATE_PROPERTIES | 
The Network property is the name of the network. When ClusterResourceControl processes the CLUSCTL_RESOURCE_GET_PRIVATE_PROPERTIES control code, it returns a property list that includes the Network 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 NetworkValue;
LPCWSTR NetworkData = L "NetworkX";
NetworkValue.Syntax = CLUSPROP_SYNTAX_LIST_VALUE_SZ;
NetworkValue.cbLength = sizeof(NetworkData);
lstrcpyW(NetworkValue.sz, NetworkData);