Notifications
Remote Push Notifications
Remote Push NotificationsLocal Push Notifications
Mechanism of Local Push Notifications
Setup
private void button1_Click(object sender, EventArgs e)
{
// schedules a notification 5 seconds from now with the given title and message.
Device.LocalNotification.Schedule("title", "body", DateTime.Now.AddSeconds(5), 5);
}
Last updated