teotestbluetooth / TestXamConnections / TestXamConnections.Android / Receivers / IntentReceiver.cs @ c478f8e5
Historique | Voir | Annoter | Télécharger (350 octets)
1 | 3fa496d6 | Martin Toutant | using Android.Content; |
---|---|---|---|
2 | 1fd64302 | Martin Toutant | using System; |
3 | |||
4 | namespace TestXamConnections.Droid.Receivers |
||
5 | { |
||
6 | public class IntentReceiver : BroadcastReceiver |
||
7 | { |
||
8 | d752dab7 | Martin Toutant | public EventHandler<Intent> OnIntentReceived; |
9 | 1fd64302 | Martin Toutant | |
10 | public override void OnReceive(Context context, Intent intent) |
||
11 | { |
||
12 | be694ed4 | Martin Toutant | OnIntentReceived.Invoke(this, intent); |
13 | 1fd64302 | Martin Toutant | } |
14 | } |
||
15 | } |