GattSession.MaxPduSizeChanged イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
最大プロトコル・データ・ユニット (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)
イベントの種類
TypedEventHandler<GattSession,IInspectable>
Windows の要件
アプリの機能 |
bluetooth
|
注釈
重要
GattSession.MaxPduSize プロパティのトピックの「解説」を参照してください。