Share via


ContentIsland.Disconnected Event

Definition

/// [Windows.Foundation.Metadata.Experimental]
/// [add: Windows.Foundation.Metadata.Experimental]
/// [remove: Windows.Foundation.Metadata.Experimental]
// Register
event_token Disconnected(EventHandler<ContentIsland> const& handler) const;

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

// Revoke with event_revoker
ContentIsland::Disconnected_revoker Disconnected(auto_revoke_t, EventHandler<ContentIsland> const& handler) const;
[Windows.Foundation.Metadata.Experimental]
[add: Windows.Foundation.Metadata.Experimental]
[remove: Windows.Foundation.Metadata.Experimental]
public event System.EventHandler<ContentIsland> Disconnected;
function onDisconnected(eventArgs) { /* Your code */ }
contentIsland.addEventListener("disconnected", onDisconnected);
contentIsland.removeEventListener("disconnected", onDisconnected);
- or -
contentIsland.ondisconnected = onDisconnected;
Public Custom Event Disconnected As EventHandler(Of ContentIsland) 

Event Type

Attributes

Applies to