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