Statistiques
| Branche: | Révision:

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

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

1
using Android.Content;
2
using System;
3

    
4
namespace TestXamConnections.Droid.Receivers
5
{
6
    public class IntentReceiver : BroadcastReceiver
7
    {
8
        public EventHandler<Intent> OnIntentReceived;
9

    
10
        public override void OnReceive(Context context, Intent intent)
11
        {
12
            OnIntentReceived.Invoke(this, intent);
13
        }
14
    }
15
}