MulticastDisabled

[The MulticastDisabled property is no longer available for use as of Windows Server 2012.]

This property is not supported.

**Windows Server 2003: **

Enables or disables heartbeat multicasting for a network. The following table summarizes the attributes of the MulticastDisabled property.

Attribute Value
Data type DWORD
Access Read/write
Status Optional
Structure CLUSPROP_DWORD
Minimum 0 (multicast enabled)
Maximum any nonzero to 0xFFFFFFFF (multicast disabled)
Default 0 (multicast enabled)

Remarks

A network's MulticastDisabled property overrides the cluster's MulticastDisabled property for that particular network.

Examples

The property value portion of a property list entry for MulticastDisabled can be set with the following example code.

DWORD          MulticastDisabledData = 0;
CLUSPROP_DWORD MulticastDisabledValue;

MulticastDisabledValue.Syntax.dw = CLUSPROP_SYNTAX_LIST_VALUE_DWORD;
MulticastDisabledValue.cbLength  = sizeof(DWORD);
MulticastDisabledValue.dw        = MulticastDisabledData;

Requirements

Minimum supported client
None supported
Minimum supported server
Windows Server 2003 Datacenter, Windows Server 2003 Enterprise
End of server support
Windows Server 2003 Datacenter, Windows Server 2003 Enterprise

See also

MulticastAddress

MulticastAddressRangeLower

MulticastAddressRangeUpper

MulticastConfigType