BluetoothSignalStrengthFilter.InRangeThresholdInDBm Property

Definition

The minimum received signal strength indicator (RSSI) value in dBm on which RSSI events will be propagated or considered in range if the previous events were considered out of range.

public:
 property IReference<short> ^ InRangeThresholdInDBm { IReference<short> ^ get(); void set(IReference<short> ^ value); };
IReference<short> InRangeThresholdInDBm();

void InRangeThresholdInDBm(IReference<short> value);
public System.Nullable<short> InRangeThresholdInDBm { get; set; }
var iReference = bluetoothSignalStrengthFilter.inRangeThresholdInDBm;
bluetoothSignalStrengthFilter.inRangeThresholdInDBm = iReference;
Public Property InRangeThresholdInDBm As Nullable(Of Short)

Property Value

The minimum RSSI value in dBm on which RSSI events will be propagated or considered in range.

Windows requirements

App capabilities
bluetooth

Remarks

The valid range for this property is between -128 and 127.

This condition still applies if no events were received since the beginning of the filtering process. The initial assumption for any device is always out of range. An event is considered in range if its RSSI value is greater than or equal to InRangeThresholdInDBm or if the previous event was considered in range and the OutOfRangeTimeout has not expired.

Applies to

See also