Class ISN_CLRegion
An area that can be monitored.
Inherited Members
Namespace: SA.iOS.CoreLocation
Assembly: cs.temp.dll.dll
Syntax
public abstract class ISN_CLRegion
Constructors
ISN_CLRegion(String)
Declaration
public ISN_CLRegion(string identifier)
Parameters
Type | Name | Description |
---|---|---|
System.String | identifier |
Properties
Identifier
The identifier for the region object. This is a value that you specify and can use to identify this region inside your application.
Declaration
public string Identifier { get; }
Property Value
Type | Description |
---|---|
System.String |
NotifyOnEntry
A Boolean indicating that notifications are generated upon entry into the region.
When this property is true
, a device crossing from outside the region
to inside the region triggers the delivery of a notification.
If the property is false
, a notification is not generated.
The default value of this property is true
.
If the app is not running when a boundary crossing occurs, the system launches the app into the background to handle it. Upon launch, your app must configure new location manager and delegate objects to receive the notification. The notification is sent to your delegate’s locationManager:didEnterRegion: method.
Declaration
public bool NotifyOnEntry { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
NotifyOnExit
A Boolean indicating that notifications are generated upon exit from the region.
When this property is true
, a device crossing from inside the region to outside the region triggers
the delivery of a notification. If the property is false
,
a notification is not generated. The default value of this property is true
.
If the app is not running when a boundary crossing occurs, the system launches the app into the background to handle it. Upon launch, your app must configure new location manager and delegate objects to receive the notification. The notification is sent to your delegate’s locationManager:didExitRegion: method.
Declaration
public bool NotifyOnExit { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |