ModeSMessageReplyInformation Property |
Gets or sets the reply information from the RI field of the reply.
Namespace: VirtualRadar.Interface.ModeSAssembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public Nullable<byte> ReplyInformation { get; set; }
Public Property ReplyInformation As Nullable(Of Byte)
Get
Set
public:
property Nullable<unsigned char> ReplyInformation {
Nullable<unsigned char> get ();
void set (Nullable<unsigned char> value);
}
member ReplyInformation : Nullable<byte> with get, set
Property Value
Type:
NullableByteRemarks
Originally I had this as an enum of the different values in 3.1.2.8.2.2 of the spec, but then when I read 3.1.2.8.4 it seemed to be
saying that the RI field would change its meaning depending on values sent by the interrogator that elicited the ACAS reply. As
we don't know what those values were we can't be sure what the meaning of RI is, and as the only useful information contained in
3.1.2.8.2.2 was the maximum cruise airspeed - which isn't really very interesting from a radar spotting perspective - I decided to
just make it a raw number instead.
See Also