ICallsignParserGetAllRouteCallsigns Method |
Given a callsign and an optional operator ICAO code this returns all possible callsigns that routes
could be stored under, in the order that they should be searched on. This takes into account the
behaviour of the VRS route compiler.
Namespace: VirtualRadar.InterfaceAssembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax List<string> GetAllRouteCallsigns(
string callsign,
string operatorIcaoCode
)
Function GetAllRouteCallsigns (
callsign As String,
operatorIcaoCode As String
) As List(Of String)
List<String^>^ GetAllRouteCallsigns(
String^ callsign,
String^ operatorIcaoCode
)
abstract GetAllRouteCallsigns :
callsign : string *
operatorIcaoCode : string -> List<string>
Parameters
- callsign
- Type: SystemString
The callsign transmitted by the aircraft. - operatorIcaoCode
- Type: SystemString
The operator ICAO code associated with the aircraft (this usually comes from the database).
Return Value
Type:
ListStringA list of callsigns. The first entry in the list is always the callsign that was passed in.
See Also