DevicePortalConnection.Closed 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
关闭与 Windows 设备门户的连接时引发。 设备门户插件应用必须为此事件实现处理程序。
// Register
event_token Closed(TypedEventHandler<DevicePortalConnection, DevicePortalConnectionClosedEventArgs const&> const& handler) const;
// Revoke with event_token
void Closed(event_token const* cookie) const;
// Revoke with event_revoker
DevicePortalConnection::Closed_revoker Closed(auto_revoke_t, TypedEventHandler<DevicePortalConnection, DevicePortalConnectionClosedEventArgs const&> const& handler) const;
public event TypedEventHandler<DevicePortalConnection,DevicePortalConnectionClosedEventArgs> Closed;
function onClosed(eventArgs) { /* Your code */ }
devicePortalConnection.addEventListener("closed", onClosed);
devicePortalConnection.removeEventListener("closed", onClosed);
- or -
devicePortalConnection.onclosed = onClosed;
Public Custom Event Closed As TypedEventHandler(Of DevicePortalConnection, DevicePortalConnectionClosedEventArgs)