ConnectionSendMessage Method (IListByte) |
Sends a binary message to the client.
Namespace: OIV.RemoteViz.RenderingAssembly: OIV.RemoteViz (in OIV.RemoteViz.dll) Version: 2023.1.3.0 (2023.1.3)
Syntax public bool SendMessage(
IList<byte> buffer
)
Public Function SendMessage (
buffer As IList(Of Byte)
) As Boolean
public:
bool SendMessage(
IList<unsigned char>^ buffer
)
member SendMessage :
buffer : IList<byte> -> bool
Parameters
- buffer
- Type: System.Collections.GenericIListByte
: the binary message to be sent to the client
Return Value
Type:
Booleantrue if the message has been successfully sent, otherwise returns false.
Remarks The client-side message event will be triggered.
See Also