Statistiques
| Branche: | Révision:

teotestbluetooth / TestXamConnections / TestXamConnections.Android / Connection / WifiConnectionService.cs @ 1fd64302

Historique | Voir | Annoter | Télécharger (1,187 ko)

1
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
using System.Threading.Tasks;
12
using TestXamConnections.Connection;
13
using TestXamConnections.Models;
14

    
15
namespace TestXamConnections.Droid.Connection
16
{
17
    /* Classe permettant d'établir une connection Wifi
18
     * NON IMPLEMENTEE
19
     */
20
    public class WifiConnectionService : IConnectionService
21
    {
22
        public EventHandler<byte[]> DataReceivedEvent { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
23
        public EventHandler<string> ConnectionFailedEvent { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
24

    
25
        public Task<bool> Connect(Dictionary<string, string> connectParam)
26
        {
27
            throw new NotImplementedException();
28
        }
29

    
30
        public Task<bool> SendCommand(byte[] hexValues)
31
        {
32
            throw new NotImplementedException();
33
        }
34

    
35
        public Task<bool> SendCommand(string command)
36
        {
37
            throw new NotImplementedException();
38
        }
39
    }
40
}