Esempio n. 1
0
                public override void StopRangingBeacons(BeaconRegion region)
                {
                    iOSBeaconRegion iosRegion = region as iOSBeaconRegion;

                    Rock.Mobile.Util.Debug.WriteLine("STOP ranging beacons with UUID: " + iosRegion.CLBeaconRegion.ProximityUuid.AsString( ));
                    CLLocationManager.StopRangingBeacons(iosRegion.CLBeaconRegion);
                }
Esempio n. 2
0
                public override void RequestStateForRegion(BeaconRegion region)
                {
                    iOSBeaconRegion iOSRegion = region as iOSBeaconRegion;

                    CLLocationManager.RequestState(iOSRegion.CLBeaconRegion);
                }
Esempio n. 3
0
                public override void StopMonitoring(BeaconRegion region)
                {
                    iOSBeaconRegion iosRegion = region as iOSBeaconRegion;

                    CLLocationManager.StopMonitoring(iosRegion.CLBeaconRegion);
                }