Previous | Next |
Returns or sets the delivery mode of the station.
Syntax
Station.DeliveryMode
Remarks
The delivery mode is an enumeration of the MCMDELIVERYMODE type, 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 outside the Windows Media Station service. |
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")
If MyStation.DeliveryMode And MCM_DM_SESSIONLESS_3PH Then
msg = "Station delivered by sessionless communication." & vbCrLf
End If
If MyStation.DeliveryMode and MCM_DM_DISTRIBUTION Then
msg = "Station delivered by distribution."
End If
MsgBox (msg)
See Also
Channel Objects, Channel.ChannelFormats, Channel.UnicastURL, Channel.NSCURL
Previous | Next |