ClientSendMessage Method (IListByte, IListConnection) |
Sends a binary message to all the connections of the client.
Namespace: OIV.RemoteViz.RenderingAssembly: OIV.RemoteViz (in OIV.RemoteViz.dll) Version: 10.12.3.0 (10.12.3.0)
Syntax public bool SendMessage(
IList<byte> buffer,
IList<Connection> excludedConnections
)
Public Function SendMessage (
buffer As IList(Of Byte),
excludedConnections As IList(Of Connection)
) As Boolean
public:
bool SendMessage(
IList<unsigned char>^ buffer,
IList<Connection^>^ excludedConnections
)
member SendMessage :
buffer : IList<byte> *
excludedConnections : IList<Connection> -> bool
Parameters
- buffer
- Type: System.Collections.GenericIListByte
: the binary buffer to be sent to all connections of the client
- excludedConnections
- Type: System.Collections.GenericIListConnection
: optional - the connections that should not receive the message.
Return Value
Type:
Booleantrue if the message has been successfully sent to all connections, otherwise returns false.
Remarks See Also