Statistiques
| Branche: | Révision:

teotestbluetooth / TestXamConnections / TestXamConnections.Android / Connection / WifiConnectionService.cs @ master

Historique | Voir | Annoter | Télécharger (747 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 340558f2 martin.toutant
    public class WifiConnexionService : IConnexionService
12 58c56df1 Martin Toutant
    {
13 340558f2 martin.toutant
        public EventHandler<byte[]> DonneesRecuesEvent { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
14 0875d625 Martin Toutant
15 340558f2 martin.toutant
        public Task<bool> Connexion(Dictionary<string, string> connectParam)
16 0875d625 Martin Toutant
        {
17
            throw new NotImplementedException();
18
        }
19
20 340558f2 martin.toutant
        public Task<bool> EnvoiCommande(byte[] hexValues)
21 1fd64302 Martin Toutant
        {
22
            throw new NotImplementedException();
23
        }
24 58c56df1 Martin Toutant
    }
25
}