From 14d0b3383d04e102029f41661c192e77e22bfd98 Mon Sep 17 00:00:00 2001 From: Roy Ben Shabat Date: Wed, 18 Mar 2020 04:46:26 +0200 Subject: Added support for FSE mouse gestures via WebRTC. Added SendBinaryData via WebRtcClient. --- Software/Visual_Studio/Tango.WebRTC/WebRtcClient.cs | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'Software/Visual_Studio/Tango.WebRTC') diff --git a/Software/Visual_Studio/Tango.WebRTC/WebRtcClient.cs b/Software/Visual_Studio/Tango.WebRTC/WebRtcClient.cs index bbbabb4e4..e1d49e18c 100644 --- a/Software/Visual_Studio/Tango.WebRTC/WebRtcClient.cs +++ b/Software/Visual_Studio/Tango.WebRTC/WebRtcClient.cs @@ -412,6 +412,13 @@ namespace Tango.WebRTC _conductor.DataChannelSendText(msg); } + public void SendBinary(byte[] data) + { + EnsureInitialized(); + + _conductor.DataChannelSendData(data); + } + public void AddIceCandidate(IceCandidate ice) { EnsureInitialized(); -- cgit v1.3.1