teotestbluetooth / TestXamConnections / TestXamConnections.Android / Connection / WifiConnectionService.cs @ 340558f2
Historique | Voir | Annoter | Télécharger (747 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 WifiConnexionService : IConnexionService |
12 |
{ |
13 |
public EventHandler<byte[]> DonneesRecuesEvent { get => throw new NotImplementedException(); set => throw new NotImplementedException(); } |
14 |
|
15 |
public Task<bool> Connexion(Dictionary<string, string> connectParam) |
16 |
{ |
17 |
throw new NotImplementedException(); |
18 |
} |
19 |
|
20 |
public Task<bool> EnvoiCommande(byte[] hexValues) |
21 |
{ |
22 |
throw new NotImplementedException(); |
23 |
} |
24 |
} |
25 |
} |