Acr.Geofencing.GeofenceManagerImpl.ToNative C# (CSharp) Метод

ToNative() защищенный Метод

protected ToNative ( GeofenceRegion region ) : CLCircularRegion
region GeofenceRegion
Результат CLCircularRegion
        protected virtual CLCircularRegion ToNative(GeofenceRegion region)
        {
            return new CLCircularRegion(
                this.ToNative(region.Center),
                region.Radius.TotalMeters,
                region.Identifier
            )
            {
                NotifyOnExit = true,
                NotifyOnEntry = true
            };
        }
    }

Same methods

GeofenceManagerImpl::ToNative ( Position position ) : CLLocationCoordinate2D