Click or drag to resize

NavigatorAutoRaiseEvents Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Determines whether Events (e.g. RouteChanged) and Notifications triggered by an update to the Navigator's position should be raised automatically.

Namespace:  Telogis.GeoBase.Navigation
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public bool AutoRaiseEvents { get; set; }

Property Value

Type: Boolean
Remarks
Defaults to true.

If set to true, events and notifications will be raised synchronously during execution of the AddPoint method. This can cause thread safety issues when running the Navigator on a non-UI thread, due to lock statements within AddPoint. If set to false, a manual call to RaiseEvents is required to raise these events. This method should be called as soon as possible after each call to AddPoint, to ensure events are raised promptly.

See Also