Class MtuChangedEventArgs
- Namespace
- Bluetooth.Abstractions.Broadcasting.EventArgs
- Assembly
- Bluetooth.Abstractions.Broadcasting.dll
Event arguments for the MTU changed event for a broadcast client device.
public class MtuChangedEventArgs : EventArgs
- Inheritance
-
MtuChangedEventArgs
- Inherited Members
Constructors
MtuChangedEventArgs(IBluetoothConnectedDevice, int)
Initializes a new instance of the MtuChangedEventArgs class.
public MtuChangedEventArgs(IBluetoothConnectedDevice device, int mtu)
Parameters
deviceIBluetoothConnectedDeviceThe client device whose MTU changed.
mtuintThe new MTU value.
Properties
Device
Gets the client device whose MTU changed.
public IBluetoothConnectedDevice Device { get; }
Property Value
Mtu
Gets the new MTU value.
public int Mtu { get; }