AllJoynBusAttachment.SessionJoined 事件

定义

重要

Windows.Devices.AllJoyn 命名空间中的类型已弃用,将来的 Windows 版本中可能不可用。 AllJoyn(由 AllSeen Alliance 赞助)是一种开源发现和通信协议,适用于物联网 (IoT) 方案,例如开灯和关灯以及读取温度。 有关替代项(如 IoTivity LiteIoTivity),请参阅 iotivity.org 网站。

当远程 AllJoyn 终结点加入总线附件的会话时发生。

// Register
event_token SessionJoined(TypedEventHandler<AllJoynBusAttachment, AllJoynSessionJoinedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
AllJoynBusAttachment::SessionJoined_revoker SessionJoined(auto_revoke_t, TypedEventHandler<AllJoynBusAttachment, AllJoynSessionJoinedEventArgs const&> const& handler) const;
/// [add: Windows.Foundation.Metadata.Deprecated("AllJoynBusAttachment has been deprecated.  For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 786432, "Windows.Foundation.UniversalApiContract")]
/// [remove: Windows.Foundation.Metadata.Deprecated("AllJoynBusAttachment has been deprecated.  For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 786432, "Windows.Foundation.UniversalApiContract")]
// Register
event_token SessionJoined(TypedEventHandler<AllJoynBusAttachment, AllJoynSessionJoinedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
AllJoynBusAttachment::SessionJoined_revoker SessionJoined(auto_revoke_t, TypedEventHandler<AllJoynBusAttachment, AllJoynSessionJoinedEventArgs const&> const& handler) const;
public event TypedEventHandler<AllJoynBusAttachment,AllJoynSessionJoinedEventArgs> SessionJoined;
[add: Windows.Foundation.Metadata.Deprecated("AllJoynBusAttachment has been deprecated.  For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 786432, "Windows.Foundation.UniversalApiContract")]
[remove: Windows.Foundation.Metadata.Deprecated("AllJoynBusAttachment has been deprecated.  For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 786432, "Windows.Foundation.UniversalApiContract")]
public event TypedEventHandler<AllJoynBusAttachment,AllJoynSessionJoinedEventArgs> SessionJoined;
function onSessionJoined(eventArgs) { /* Your code */ }
allJoynBusAttachment.addEventListener("sessionjoined", onSessionJoined);
allJoynBusAttachment.removeEventListener("sessionjoined", onSessionJoined);
- or -
allJoynBusAttachment.onsessionjoined = onSessionJoined;
Public Custom Event SessionJoined As TypedEventHandler(Of AllJoynBusAttachment, AllJoynSessionJoinedEventArgs) 

事件类型

属性

Windows 要求

设备系列
Windows 10 Anniversary Edition (在 10.0.14393.0 - for Xbox, see UWP features that aren't yet supported on Xbox 中引入)
API contract
Windows.Foundation.UniversalApiContract (在 v3.0 中引入)
应用功能
allJoyn

注解

Sender: 引发事件的 AllJoynBusAttachment

参数: 代表会话联接者的 AllJoynAcceptSessionJoinerEventArgs 对象。

适用于