Acr.Geofencing.GeofenceManagerImpl.GeofenceManagerImpl C# (CSharp) 메소드

GeofenceManagerImpl() 공개 메소드

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