Description Property for Network Interfaces

The Description property provides remarks or comments about the network interface.

Quick Info

Type: Null-terminated Unicode string
Access: Read/write
Function: ClusterNetInterfaceControl
Structure: CLUSPROP_SZ
Control Code: CLUSCTL_NETINTERFACE_GET_COMMON_PROPERTIES

Remarks

When ClusterNetworkControl processes the CLUSCTL_NETWORK_GET_RO_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 "Network Interface Description";
DescriptionValue.Syntax = CLUSPROP_SYNTAX_LIST_VALUE_SZ;
DescriptionValue.cbLength = sizeof(DescriptionData);
lstrcpyW(DescriptionValue.sz, DescriptionData);
 

QuickInfo

  Version: Use Windows NT Server Enterprise Edition 4.0.
  Windows CE: Unsupported.
  Header: Declared in clusapi.h.