Table of Contents

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

device IBluetoothRemoteDevice

The device whose PHY changed.

txPhy PhyMode

The transmit PHY mode.

rxPhy PhyMode

The receive PHY mode.

Properties

Device

Gets the device whose PHY changed.

public IBluetoothRemoteDevice Device { get; }

Property Value

IBluetoothRemoteDevice

RxPhy

Gets the receive PHY mode.

public PhyMode RxPhy { get; }

Property Value

PhyMode

TxPhy

Gets the transmit PHY mode.

public PhyMode TxPhy { get; }

Property Value

PhyMode