AircraftFetcherTKey, TDetailDoFetchManyAircraft Method |
When overridden by a derivee this fetches many aircraft details simultaneously.
Namespace: VirtualRadar.InterfaceAssembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax protected virtual bool DoFetchManyAircraft(
IEnumerable<AircraftFetcherTKey, TDetailFetchedDetail> fetchedDetails
)
Protected Overridable Function DoFetchManyAircraft (
fetchedDetails As IEnumerable(Of AircraftFetcherTKey, TDetailFetchedDetail)
) As Boolean
protected:
virtual bool DoFetchManyAircraft(
IEnumerable<AircraftFetcherTKey, TDetailFetchedDetail^>^ fetchedDetails
)
abstract DoFetchManyAircraft :
fetchedDetails : IEnumerable<AircraftFetcherTKey, TDetailFetchedDetail> -> bool
override DoFetchManyAircraft :
fetchedDetails : IEnumerable<AircraftFetcherTKey, TDetailFetchedDetail> -> bool
Parameters
- fetchedDetails
- Type: System.Collections.GenericIEnumerableAircraftFetcherTKey, TDetailFetchedDetail
The aircraft to fetch.
Return Value
Type:
BooleanFalse if the derivee does not support fetching many details simultaneously, or if the derivee could not
fetch multiple aircraft, in which case each aircraft is fetched individually. True if the derivee fetched all
aircraft successfully.
See Also