Table of Contents

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

device IBluetoothConnectedDevice

The client device whose MTU changed.

mtu int

The new MTU value.

Properties

Device

Gets the client device whose MTU changed.

public IBluetoothConnectedDevice Device { get; }

Property Value

IBluetoothConnectedDevice

Mtu

Gets the new MTU value.

public int Mtu { get; }

Property Value

int