HttpDiagnosticProvider.ResponseReceived イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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)