ContentIsland.Disconnected Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
/// [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