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

FromNative() protected method

protected FromNative ( CLCircularRegion native ) : GeofenceRegion
native CLCircularRegion
return GeofenceRegion
        protected virtual GeofenceRegion FromNative(CLCircularRegion native)
        {
            return new GeofenceRegion
            {
                Identifier = native.Identifier,
                Center = this.FromNative(native.Center),
                Radius = Distance.FromMeters(native.Radius)
            };
        }

Same methods

GeofenceManagerImpl::FromNative ( CLRegionState state ) : GeofenceStatus
GeofenceManagerImpl::FromNative ( CLLocationCoordinate2D native ) : Position