Click or drag to resize

ILinkTrafficSource Interface

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Implemented to resolve a given LinkId and DateTime to a TrafficInfo.

Namespace:  Telogis.GeoBase.Traffic
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public interface ILinkTrafficSource : IGenericTrafficSource

The ILinkTrafficSource type exposes the following members.

Properties
  NameDescription
Public propertyCreatedTime
The DateTime when the traffic data was created.
Top
Methods
  NameDescription
Public methodGetTrafficInfo(UInt64, TrafficDirectionType, DateTime)
Implemented by derived classes to resolve a given LinkID and DateTime to a TrafficInfo.
Public methodGetTrafficInfo(UInt64, TrafficDirectionType, DateTime, TimeZone)
Implemented by derived classes to resolve a given LinkId and DateTime to a TrafficInfo.
Top
Remarks

The ILinkTrafficSource interface is implemented to resolve a given LinkId and DateTime to a TrafficInfo. A Traffic object will have one or more traffic sources which will be implemented with the ILinkTrafficSource interface.

Additional traffic data sources can be added with the ILinkTrafficSource interface. The interface exposes the GetTrafficInfo method, and the CreatedTime property. To implement this interface, code must be provided for both GetTrafficInfo, and CreatedTime.

CreatedTime - gets the DateTime for when the traffic data was created.

GetTrafficInfo - this method returns the TrafficInfo for the given LinkId at the specified DateTime.

See Also