다음을 통해 공유


AppServiceConnection.ServiceClosed 이벤트

정의

다른 엔드포인트가 앱 서비스에 대한 연결을 닫을 때 발생합니다.

// 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) 

이벤트 유형

적용 대상

추가 정보