Previous | Next |
Returns or sets the address of the network card used by the station.
Syntax
Station.MulticastAdapterAddress
Remarks
If the multicast server has one network card (or NIC or adapter), set the value to an empty string (“”). If the server has multiple network cards, specify the card by its IP address.
Example
' Get the second station
Set MyStation = NSChannelMgr.Channels.Item(1)
' Set value to the default NIC
MyStation.MulticastAdapterAddress = ""
' Set value to the IP address of the second Network card
MyStation.MulticastAdapterAddress = "121.5.24.9"
See Also
Channel Objects, Channel.MulticastAddress
Previous | Next |