Click or drag to resize

DepartureNotification Class

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
A Notification that will trigger every time a stop is departed
Inheritance Hierarchy
SystemObject
  Telogis.GeoBase.NavigationNotification
    Telogis.GeoBase.NavigationDepartureNotification

Namespace:  Telogis.GeoBase.Navigation
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public class DepartureNotification : Notification

The DepartureNotification type exposes the following members.

Constructors
  NameDescription
Public methodDepartureNotification
Constructs a new notification that is called every time we depart a stop.
Top
Properties
  NameDescription
Public propertyHandler
Gets the event handler.
(Inherited from Notification.)
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodShouldRaise
Checks if this notification should be raised in navigation mode.
(Overrides NotificationShouldRaise(NavigationEvent, Position, LatLon, DistanceMeter).)
Public methodShouldRaiseMapFollow
Checks if this notification should be raised in map follow mode for the provided position.
(Overrides NotificationShouldRaiseMapFollow(Position, LatLon).)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks

This notification will never trigger when in map follow mode.

See NotificationDelegate for an example on how notifications may be used.

Examples
Constructing a DepartureNotification:
DepartureNotification notify = new DepartureNotification(MyHandler);
See Also