- 1
- 2
- 3
- 4
- 5
- 6
- 7
protected override void OnMessage (Context context, Intent intent)
{
//Push Notification arrived - print out the keys/values
if (intent == null || intent.Extras == null)
foreach (var key in intent.Extras.KeySet())
Console.WriteLine("Key: {0}, Value: {1}");
}
Комментарии (5) RSS
Добавить комментарий