The Description property provides remarks or comments about the network.
| Type: | Null-terminated Unicode string | 
| Access: | Read/write | 
| Function: | ClusterNetworkControl | 
| Structure: | CLUSPROP_SZ | 
| Control Code: | CLUSCTL_NETWORK_GET_RO_COMMON_PROPERTIES | 
When ClusterNetworkControl processes the CLUSCTL_NETWORK_GET_COMMON_PROPERTIES control code, it returns a property list that includes the Description 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 DescriptionValue;
LPCWSTR DescriptionData = L "External network";
DescriptionValue.Syntax = CLUSPROP_SYNTAX_LIST_VALUE_SZ;
DescriptionValue.cbLength = sizeof(DescriptionData);
lstrcpyW(DescriptionValue.sz, DescriptionData);
 
  Version: Use Windows NT Server Enterprise Edition 4.0.
  Windows CE: Unsupported.
  Header: Declared in clusapi.h.