Windows Media Services SDK banner art
PreviousNext

Channel.MulticastAddress Property

Returns or sets the String value for the multicast address of the station.

Remarks

The IP address used for a multicast must fall between 224.0.0.0 and 239.255.255.255. Addresses in the 239.*.*.* range are recommended for intranets. Addresses in the 224.*.*.* range must be avoided because they are reserved for low-level protocols. You can create multiple programs destined for the same IP address. However, you must avoid simultaneously multicasting programs to the same IP address.

Syntax

Station.MulticastAddress

Example

' Get the second station
Set MyStation = NSChannelMgr.Channels.Item(1)
MyStation.MulticastAddress = "239.2.254.100"
MsgBox ("MyStation address: " & MyStation.MulticastAddress)

See Also

Channel Objects, Channel.Port, Channel.MulticastAdapterAddress

PreviousNext


© 1996-1999 Microsoft Corporation. All rights reserved.