teotestbluetooth / TestXamConnections / TestXamConnections.Android / Receivers / IntentReceiver.cs @ master
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 |
} |