Client.DeliveryMode Property

Returns the delivery mode of the Client object.

Syntax

NSChannelMgr.Clients(index).DeliveryMode

Remarks

Following is a list of 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 external to MCM.
8 MCM_DM_DISTRIBUTION Distribution: data streamed via a point- to- point TCP connection

Example

Dim Clients
Set NoregClient = NSChannelMgr.Clients.Find( "Trondheim server" )
Select Case NoregClient.DeliveryMode
  Case MCM_DM_SESSIONLESS str = "sessionless"
  Case MCM_DM_DISTRIBUTION str = "distribution"
Case Else str = "unknown delivery mode"
End Select
MsgBox "Norwegian client connection mode is: " & str

See Also

Client.ID, Client.ChannelID, Client.Address, Clients collection object, Client objects

© 1996-1998 Microsoft Corporation. All rights reserved.