BaseStationMessageToBaseStationString Method |
Returns the message as parseable BaseStation message text.
Namespace: VirtualRadar.Interface.BaseStationAssembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public string ToBaseStationString(
bool emitExtendedBaseStationFormat = false
)
Public Function ToBaseStationString (
Optional emitExtendedBaseStationFormat As Boolean = false
) As String
public:
String^ ToBaseStationString(
bool emitExtendedBaseStationFormat = false
)
member ToBaseStationString :
?emitExtendedBaseStationFormat : bool
(* Defaults:
let _emitExtendedBaseStationFormat = defaultArg emitExtendedBaseStationFormat false
*)
-> string
Parameters
- emitExtendedBaseStationFormat (Optional)
- Type: SystemBoolean
True if MLAT-sourced messages should use a message type of MLAT, false if they should use MSG. Ignored for other message types.
Return Value
Type:
StringThe properties of the message formatted up as a text string that can be sent to any application
that can interpret BaseStation messages.
See Also