AppServiceConnection.ServiceClosed Kejadian
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Terjadi ketika titik akhir lainnya menutup koneksi ke layanan aplikasi.
// 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)