Statistiques
| Branche: | Révision:

teotestbluetooth / TestXamConnections / TestXamConnections.Android / Receivers / IntentReceiver.cs @ d752dab7

Historique | Voir | Annoter | Télécharger (551 octets)

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 TestXamConnections.Models;
12

    
13
namespace TestXamConnections.Droid.Receivers
14
{
15
    public class IntentReceiver : BroadcastReceiver
16
    {
17
        public EventHandler<Intent> OnIntentReceived;
18

    
19
        public override void OnReceive(Context context, Intent intent)
20
        {
21
            OnIntentReceived(this, intent);
22
        }
23
    }
24
}