次の方法で共有


GattSession.MaxPduSizeChanged イベント

定義

最大プロトコル・データ・ユニット (PDU) サイズが変更されたときに発生するイベント。 PDU は 、最大伝送単位 (MTU) とも呼ばれます。

MaxPduSizeChanged は、属性プロトコル (ATT) のネゴシエートされた MTU が変更されるたびに発生します。 これは、リモート Bluetooth 周辺機器によって変更またはネゴシエートできます。 開発者は、オペレーティング システムによって完全に管理されているため、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 プロパティのトピックの「解説」を参照してください。

適用対象