Previous | Next |
Returns the delivery mode of the Client object.
Syntax
NSChannelMgr.Client(Index).DeliveryMode
Remarks
Delivery mode values can be combined. The following list shows delivery mode values supported by the control
Value | Mnemonic | Description |
2 | MCM_DM_SESSIONLESS_3PH | Sessionless: Data streamed via multicast with headers transferred to clients by some mechanism outside MCM. |
8 | MCM_DM_DISTRIBUTION | Distribution: Data streamed via a point-to-point TCP connection |
Example
Set NoregClient = NSChannelMgr.Client.Find( "Trondheim server" )
Mode = NoregClient.DeliveryMode
Select Case Mode
Case 2 str = "sessionless"
Case 8 str = "distribution"
Case 10 str = "sessionless and distribution"
End Select
MsgBox ("Norwegian client connection mode is: " & str & “.”)
See Also
Client.ID, Client.ChannelId, Client.Address, Clients Collection Object, Client Objects
Previous | Next |