BluetoothGattCallback.OnPhyUpdate Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Callback triggered as result of BluetoothGatt#setPreferredPhy
, or as a result of
remote device changing the PHY.
[Android.Runtime.Register("onPhyUpdate", "(Landroid/bluetooth/BluetoothGatt;III)V", "GetOnPhyUpdate_Landroid_bluetooth_BluetoothGatt_IIIHandler", ApiSince=26)]
public virtual void OnPhyUpdate (Android.Bluetooth.BluetoothGatt? gatt, Android.Bluetooth.LE.ScanSettingsPhy txPhy, Android.Bluetooth.LE.ScanSettingsPhy rxPhy, Android.Bluetooth.GattStatus status);
[<Android.Runtime.Register("onPhyUpdate", "(Landroid/bluetooth/BluetoothGatt;III)V", "GetOnPhyUpdate_Landroid_bluetooth_BluetoothGatt_IIIHandler", ApiSince=26)>]
abstract member OnPhyUpdate : Android.Bluetooth.BluetoothGatt * Android.Bluetooth.LE.ScanSettingsPhy * Android.Bluetooth.LE.ScanSettingsPhy * Android.Bluetooth.GattStatus -> unit
override this.OnPhyUpdate : Android.Bluetooth.BluetoothGatt * Android.Bluetooth.LE.ScanSettingsPhy * Android.Bluetooth.LE.ScanSettingsPhy * Android.Bluetooth.GattStatus -> unit
Parameters
- gatt
- BluetoothGatt
GATT client
- txPhy
- ScanSettingsPhy
the transmitter PHY in use. One of BluetoothDevice#PHY_LE_1M
, BluetoothDevice#PHY_LE_2M
, and BluetoothDevice#PHY_LE_CODED
.
- rxPhy
- ScanSettingsPhy
the receiver PHY in use. One of BluetoothDevice#PHY_LE_1M
, BluetoothDevice#PHY_LE_2M
, and BluetoothDevice#PHY_LE_CODED
.
- status
- GattStatus
Status of the PHY update operation. BluetoothGatt#GATT_SUCCESS
if the
operation succeeds.
- Attributes
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.