Enum ScanMatchMode
- Namespace
- Bluetooth.Abstractions.Scanning.Options.Android
- Assembly
- Bluetooth.Abstractions.Scanning.dll
Android scan match modes (API 23+).
public enum ScanMatchMode
Fields
Aggressive = 1Aggressive mode with few matches per filter (fewer false positives). Maps to ScanSettings.MATCH_MODE_AGGRESSIVE (value: 1).
None = 0No matching, all advertisements are reported (default). Maps to ScanSettings.MATCH_MODE_AGGRESSIVE (value: 1) without filtering.
Sticky = 2Sticky 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.