Exemple #1
0
    void DidExitRegion(object sender, CLLocationManager.DidExitEventArgs e)
    {
        var notif = new LocalNotification();

        notif.alertBody = "Lost beacon!";
        NotificationServices.PresentLocalNotificationNow(notif);

        Log("Left region.");
        locationManager.StopRangingBeaconsInRegion(beaconRegion);
    }