teotestbluetooth / TestXamConnections / TestXamConnections.Android / Connection / WifiConnectionService.cs @ c478f8e5
Historique | Voir | Annoter | Télécharger (744 octets)
1 |
using System; |
---|---|
2 |
using System.Collections.Generic; |
3 |
using System.Threading.Tasks; |
4 |
using TestXamConnections.Connection; |
5 |
|
6 |
namespace TestXamConnections.Droid.Connection |
7 |
{ |
8 |
/* Classe permettant d'établir une connection Wifi |
9 |
* NON IMPLEMENTEE |
10 |
*/ |
11 |
public class WifiConnectionService : IConnectionService |
12 |
{ |
13 |
public EventHandler<byte[]> DataReceivedEvent { get => throw new NotImplementedException(); set => throw new NotImplementedException(); } |
14 |
|
15 |
public Task<bool> Connect(Dictionary<string, string> connectParam) |
16 |
{ |
17 |
throw new NotImplementedException(); |
18 |
} |
19 |
|
20 |
public Task<bool> SendCommand(byte[] hexValues) |
21 |
{ |
22 |
throw new NotImplementedException(); |
23 |
} |
24 |
} |
25 |
} |