Roy Ben Shabat
Roy Ben Shabat
Now I see... ```csharp // 32feet.NET - Personal Area Networking for .NET // // InTheHand.Net.Sockets.BluetoothListener (Android) // // Copyright (c) 2018-2020 In The Hand Ltd, All rights reserved. // This...
Here is a very rough implementation.. ```csharp partial class BluetoothListener { private BluetoothAdapter _adapter; private BluetoothServerSocket _server; void DoStart() { _adapter = BluetoothAdapter.DefaultAdapter; _server = _adapter.ListenUsingRfcommWithServiceRecord(ServiceName, UUID.FromString(serviceUuid.ToString())); } void DoStop()...
Please try again, It is working now. That website was down for a few minutes.
Correct me if I'm wrong, but according to your change, the image file will still be created on hard drive. You are only copying the byte array from that file...
What version of Visual Studio are you using? What are the errors ?
I see.. I will try to create an isolated environment and test the compilation process. Nevertheless, those errors seems to be about some demo projects, you can still use the...
From what I can see there is no limit on the message size. If you can send a sample project I will investigate.