Table of Contents

Class MtuChangedEventArgs

Namespace
Bluetooth.Abstractions.Scanning.EventArgs
Assembly
Bluetooth.Abstractions.Scanning.dll

Event arguments for the MTU changed event.

public class MtuChangedEventArgs : EventArgs
Inheritance
MtuChangedEventArgs
Inherited Members

Constructors

MtuChangedEventArgs(IBluetoothRemoteDevice, int)

Initializes a new instance of the MtuChangedEventArgs class.

public MtuChangedEventArgs(IBluetoothRemoteDevice device, int mtu)

Parameters

device IBluetoothRemoteDevice

The device whose MTU changed.

mtu int

The new MTU value.

Properties

Device

Gets the device whose MTU changed.

public IBluetoothRemoteDevice Device { get; }

Property Value

IBluetoothRemoteDevice

Mtu

Gets the new MTU value.

public int Mtu { get; }

Property Value

int