Determine all the possible modes of operation of the Bluetooth radio.
| C# | Visual Basic |
public enum RadioMode
Public Enumeration RadioMode
| Member | Description |
|---|---|
| PowerOff |
Bluetooth is disabled on the device.
|
| Connectable |
Bluetooth is connectable but your device cannot be discovered by other devices.
|
| Discoverable |
Bluetooth is activated and fully discoverable.
|
| HasFlag |
Determines whether one or more bit fields are set in the current instance.
|
See BluetoothRadio.Mode
for what is supported on what platforms. For instance setting the mode
is not supported on Widcomm+Win32. On Widcomm WM/CE setting PowerOff
actually sets 'CONNECT_ALLOW_NONE', and not actually disabled/off.
Also when the stack is disabled, setting connectable/discoverable
does not manage to turn the radio on.