IListenerModeSBytesReceived Event |
Raised when bytes representing a Mode-S message have been received. This may not be on the same thread that started
the listener - however all messages are guaranteed to be transmitted in the order in which they were received.
Namespace: VirtualRadar.Interface.ListenerAssembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax event EventHandler<EventArgs<ExtractedBytes>> ModeSBytesReceived
Event ModeSBytesReceived As EventHandler(Of EventArgs(Of ExtractedBytes))
event EventHandler<EventArgs<ExtractedBytes^>^>^ ModeSBytesReceived {
void add (EventHandler<EventArgs<ExtractedBytes^>^>^ value);
void remove (EventHandler<EventArgs<ExtractedBytes^>^>^ value);
}
abstract ModeSBytesReceived : IEvent<EventHandler<EventArgs<ExtractedBytes>>,
EventArgs<ExtractedBytes>>
Value
Type:
SystemEventHandlerEventArgsExtractedBytesRemarks
This is only raised when listening to sources of Mode-S data. It is not raised when listening to Port 30003 format
sources. The ExtractedBytes passed as the event argument is a clone of the bytes original extracted. Bytes that fail
the checksum test (when applicable) are not passed to the event handler.
See Also