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);
        }