Class PhyChangedEventArgs
- Namespace
- Bluetooth.Abstractions.Scanning.EventArgs
- Assembly
- Bluetooth.Abstractions.Scanning.dll
Event arguments for the PHY (Physical Layer) changed event.
public class PhyChangedEventArgs : EventArgs
- Inheritance
-
PhyChangedEventArgs
- Inherited Members
Constructors
PhyChangedEventArgs(IBluetoothRemoteDevice, PhyMode, PhyMode)
Initializes a new instance of the PhyChangedEventArgs class.
public PhyChangedEventArgs(IBluetoothRemoteDevice device, PhyMode txPhy, PhyMode rxPhy)
Parameters
deviceIBluetoothRemoteDeviceThe device whose PHY changed.
txPhyPhyModeThe transmit PHY mode.
rxPhyPhyModeThe receive PHY mode.
Properties
Device
Gets the device whose PHY changed.
public IBluetoothRemoteDevice Device { get; }
Property Value
RxPhy
Gets the receive PHY mode.
public PhyMode RxPhy { get; }
Property Value
TxPhy
Gets the transmit PHY mode.
public PhyMode TxPhy { get; }