Table of Contents

Enum ScanMatchMode

Namespace
Bluetooth.Abstractions.Scanning.Options.Android
Assembly
Bluetooth.Abstractions.Scanning.dll

Android scan match modes (API 23+).

public enum ScanMatchMode

Fields

Aggressive = 1

Aggressive mode with few matches per filter (fewer false positives). Maps to ScanSettings.MATCH_MODE_AGGRESSIVE (value: 1).

None = 0

No matching, all advertisements are reported (default). Maps to ScanSettings.MATCH_MODE_AGGRESSIVE (value: 1) without filtering.

Sticky = 2

Sticky mode with more matches per filter (higher discovery rate). Maps to ScanSettings.MATCH_MODE_STICKY (value: 2).

Remarks

Maps to Android ScanSettings match mode constants.