DnsName
The full DNS label associated with the Netname resource. The following table summarizes the attributes of the DnsName property.
Attribute | Value |
---|---|
Data type | Null-terminated Unicode string |
Access | Read/write |
Status | Required |
Structure | CLUSPROP_SZ |
Maximum | None (but see Maximum Property Size.) |
Default | NULL |
Remarks
The CLUSPROP_SZ_DECLARE macro creates a CLUSPROP_SZ structure with an array of the correct size.
Examples
The property value portion of a property list entry for Name can be set with the following example code.
WCHAR szDnsNameData[] = L"myDNS";
CLUSPROP_SZ_DECLARE( DnsNameValue, sizeof( szDnsNameData ) / sizeof( WCHAR ) );
DnsNameValue.Syntax.dw = CLUSPROP_SYNTAX_LIST_VALUE_SZ;
DnsNameValue.cbLength = sizeof( szDnsNameData );
StringCbCopy( DnsNameValue.sz,
DnsNameValue.cbLength,
szDnsNameData );
Requirements
Minimum supported client |
None supported |
Minimum supported server |
Windows Server 2008 Datacenter, Windows Server 2008 Enterprise |