teotestbluetooth / TestXamConnections / TestXamConnections.Android / Connection / WifiConnectionService.cs @ 8787b8fb
Historique | Voir | Annoter | Télécharger (1,04 ko)
1 | 58c56df1 | Martin Toutant | using Android.App; |
---|---|---|---|
2 | using Android.Content; |
||
3 | using Android.OS; |
||
4 | using Android.Runtime; |
||
5 | using Android.Views; |
||
6 | using Android.Widget; |
||
7 | using System; |
||
8 | using System.Collections.Generic; |
||
9 | using System.Linq; |
||
10 | using System.Text; |
||
11 | 0875d625 | Martin Toutant | using System.Threading.Tasks; |
12 | 91ef3e8c | Martin Toutant | using TestXamConnections.Connection; |
13 | using TestXamConnections.Models; |
||
14 | 58c56df1 | Martin Toutant | |
15 | 91ef3e8c | Martin Toutant | namespace TestXamConnections.Droid.Connection |
16 | 58c56df1 | Martin Toutant | { |
17 | 91ef3e8c | Martin Toutant | /* Classe permettant d'établir une connection Wifi |
18 | * NON IMPLEMENTEE |
||
19 | 58c56df1 | Martin Toutant | */ |
20 | 91ef3e8c | Martin Toutant | public class WifiConnectionService : IConnectionService |
21 | 58c56df1 | Martin Toutant | { |
22 | d14bc0b1 | Martin Toutant | public EventHandler<byte[]> DataReceivedEvent { get => throw new NotImplementedException(); set => throw new NotImplementedException(); } |
23 | 0875d625 | Martin Toutant | |
24 | be694ed4 | Martin Toutant | public Task<bool> Connect(Dictionary<string, string> connectParam) |
25 | 0875d625 | Martin Toutant | { |
26 | throw new NotImplementedException(); |
||
27 | } |
||
28 | |||
29 | be694ed4 | Martin Toutant | public Task<bool> SendCommand(byte[] hexValues) |
30 | 0875d625 | Martin Toutant | { |
31 | throw new NotImplementedException(); |
||
32 | } |
||
33 | 1fd64302 | Martin Toutant | |
34 | be694ed4 | Martin Toutant | public Task<bool> SendCommand(string command) |
35 | 1fd64302 | Martin Toutant | { |
36 | throw new NotImplementedException(); |
||
37 | } |
||
38 | 58c56df1 | Martin Toutant | } |
39 | } |