Acr.Geofencing.GeofenceManagerImpl.GeofenceManagerImpl C# (CSharp) Method

GeofenceManagerImpl() public method

public GeofenceManagerImpl ( ) : System
return 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);
        }