Acr.Geofencing.GeofenceManagerImpl.GeofenceManagerImpl C# (CSharp) Méthode

GeofenceManagerImpl() public méthode

public GeofenceManagerImpl ( ) : System
Résultat System
        public GeofenceManagerImpl()
        {
            this.locationManager = new CLLocationManager();
            this.locationManager.RegionEntered += (sender, args) => this.DoBroadcast(args, GeofenceStatus.Entered);
            this.locationManager.RegionLeft += (sender, args) => this.DoBroadcast(args, GeofenceStatus.Exited);
        }