Returns or sets the delivery mode of the station.
Syntax
Station.DeliveryMode
Remarks
The delivery mode is an enumeration of type MCMDELIVERYMODE, and can have the following values:
Value | Mnemonic | Description |
2 | MCM_DM_SESSIONLESS_3PH | Sessionless: data streamed via multicast with headers transferred to clients by some mechanism external to MCM |
8 | MCM_DM_DISTRIBUTION | Distribution: data streamed via a point to point TCP connection |
10 | Both Sessionless and Distribution modes are used |
Example
Set MyStation = NSChannelMgr.Channels.Find( "Interviews")
Select Case MyStation.DeliveryMode
Case 2 MsgBox "Station delivered by sessionless communication"
Case 8 MsgBox "Station delivered by distribution"
End Select
See Also
Channel object, Channel.ChannelFormats, Channel.UnicastURL, Channel.NSCURL
© 1996-1998 Microsoft Corporation. All rights reserved.