AppServiceConnection.ServiceClosed Event

Definition

Occurs when the other endpoint closes the connection to the app service.

// Register
event_token ServiceClosed(TypedEventHandler<AppServiceConnection, AppServiceClosedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
AppServiceConnection::ServiceClosed_revoker ServiceClosed(auto_revoke_t, TypedEventHandler<AppServiceConnection, AppServiceClosedEventArgs const&> const& handler) const;
public event TypedEventHandler<AppServiceConnection,AppServiceClosedEventArgs> ServiceClosed;
function onServiceClosed(eventArgs) { /* Your code */ }
appServiceConnection.addEventListener("serviceclosed", onServiceClosed);
appServiceConnection.removeEventListener("serviceclosed", onServiceClosed);
- or -
appServiceConnection.onserviceclosed = onServiceClosed;
Public Custom Event ServiceClosed As TypedEventHandler(Of AppServiceConnection, AppServiceClosedEventArgs) 

Event Type

Applies to

See also