private void DeviceInputOnSendDeviceDataEvent(object sender, SendDeviceDataEventArgs e)
 {
     _eventArgs = e;
     _localTcpClient.Send(new PacketData(PacketType.InputDeviceData, e.Buffer));
 }
Beispiel #2
0
 public void OnSendDeviceDataEvent(object sender, SendDeviceDataEventArgs args)
 {
     SendDeviceDataEvent?.Invoke(sender, args);
 }