HttpDiagnosticProvider.ResponseReceived 이벤트

정의

ResponseReceived 이벤트를 구독하여 응답이 수신되었다는 알림을 받습니다.

// Register
event_token ResponseReceived(TypedEventHandler<HttpDiagnosticProvider, HttpDiagnosticProviderResponseReceivedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
HttpDiagnosticProvider::ResponseReceived_revoker ResponseReceived(auto_revoke_t, TypedEventHandler<HttpDiagnosticProvider, HttpDiagnosticProviderResponseReceivedEventArgs const&> const& handler) const;
public event TypedEventHandler<HttpDiagnosticProvider,HttpDiagnosticProviderResponseReceivedEventArgs> ResponseReceived;
function onResponseReceived(eventArgs) { /* Your code */ }
httpDiagnosticProvider.addEventListener("responsereceived", onResponseReceived);
httpDiagnosticProvider.removeEventListener("responsereceived", onResponseReceived);
- or -
httpDiagnosticProvider.onresponsereceived = onResponseReceived;
Public Custom Event ResponseReceived As TypedEventHandler(Of HttpDiagnosticProvider, HttpDiagnosticProviderResponseReceivedEventArgs) 

이벤트 유형

적용 대상