GattSession.MaxPduSizeChanged 事件

定义

当最大协议数据单位 (PDU) 大小更改时引发的事件。 PDU 也称为 最大传输单元 (MTU)

每当更改属性协议的协商 MTU (ATT) 时,将引发 MaxPduSizeChanged。 这可以通过远程蓝牙外设进行更改或协商。 作为开发人员,你无法更改 Windows 本身使用的值,因为这完全由操作系统管理。

另请参阅 GattSession.MaxPduSize 属性,如前所述,该属性是只读的。

// Register
event_token MaxPduSizeChanged(TypedEventHandler<GattSession, IInspectable const&> const& handler) const;

// Revoke with event_token
void MaxPduSizeChanged(event_token const* cookie) const;

// Revoke with event_revoker
GattSession::MaxPduSizeChanged_revoker MaxPduSizeChanged(auto_revoke_t, TypedEventHandler<GattSession, IInspectable const&> const& handler) const;
public event TypedEventHandler<GattSession,object> MaxPduSizeChanged;
function onMaxPduSizeChanged(eventArgs) { /* Your code */ }
gattSession.addEventListener("maxpdusizechanged", onMaxPduSizeChanged);
gattSession.removeEventListener("maxpdusizechanged", onMaxPduSizeChanged);
- or -
gattSession.onmaxpdusizechanged = onMaxPduSizeChanged;
Public Custom Event MaxPduSizeChanged As TypedEventHandler(Of GattSession, Object) 

事件类型

Windows 要求

应用功能
bluetooth

注解

重要

请参阅 GattSession.MaxPduSize 属性主题中的备注

适用于