| ICallsignRouteFetcherFetched Event | 
            Raised when callsign details have been fetched or changed, or if a fetch attempt was
            made and no details could be found.
            
 
Namespace: VirtualRadar.Interface.StandingDataAssembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
 Syntax
Syntaxevent EventHandler<EventArgs<CallsignRouteDetail>> Fetched
Event Fetched As EventHandler(Of EventArgs(Of CallsignRouteDetail))
 event EventHandler<EventArgs<CallsignRouteDetail^>^>^ Fetched {
	void add (EventHandler<EventArgs<CallsignRouteDetail^>^>^ value);
	void remove (EventHandler<EventArgs<CallsignRouteDetail^>^>^ value);
}abstract Fetched : IEvent<EventHandler<EventArgs<CallsignRouteDetail>>,
    EventArgs<CallsignRouteDetail>>
Value
Type: 
SystemEventHandlerEventArgsCallsignRouteDetail Remarks
Remarks
            This is raised on a background thread. If you allow exceptions to bubble up from your
            event handler then they will be logged but they could also interfere with other
            heartbeat event handlers - do not let exceptions bubble up.
            
 See Also
See Also