AppServiceConnection.ServiceClosed Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit lorsque l’autre point de terminaison ferme la connexion au service d’application.
// 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)