[ConnectionStringParameterAttribute]
[DefaultValueAttribute(false)]
[LabelAttribute("Allow Sorts By Arrival")]
public bool AllowSortsByArrival { get; set; }
<ConnectionStringParameterAttribute>
<DefaultValueAttribute(false)>
<LabelAttribute("Allow Sorts By Arrival")>
Public Property AllowSortsByArrival As Boolean
Get
Set
public:
[ConnectionStringParameterAttribute]
[DefaultValueAttribute(false)]
[LabelAttribute(L"Allow Sorts By Arrival")]
property bool AllowSortsByArrival {
bool get ();
void set (bool value);
}
function get_AllowSortsByArrival();
function set_AllowSortsByArrival(value);
Value defaults to true, so any incoming measurement with a bad timestamp quality will be sorted according to its arrival time. Setting the property to false will cause all measurements with a bad timestamp quality to be discarded. This property will only be considered when IgnoreBadTimestamps is false.
Value will be forced to false if ProcessByReceivedTimestamp is true.