2.2.1.2.5 DNS_RPC_NAME_AND_PARAM

The DNS_RPC_NAME_AND_PARAM structure contains information about a simple server property that takes a DWORD value. The DNS Server Management Protocol uses this structure to exchange information about various properties that take an integer value, while processing the R_DnssrvOperation2 (section 3.1.4.6) method call with operation types "ResetDwordProperty", "DeleteNode", and "DeleteRecordSet".

 typedef struct _DnssrvRpcNameAndParam {
   DWORD dwParam;
   [string] char* pszNodeName;
 } DNS_RPC_NAME_AND_PARAM,
  *PDNS_RPC_NAME_AND_PARAM;

dwParam: The requested new value for the server property specified by pszNodeName.

pszNodeName: Pointer to a null-terminated UTF-8 string that specifies the name of the server property.