Partager via


HttpDiagnosticProvider.ResponseReceived Événement

Définition

Abonnez-vous à l’événement ResponseReceived pour recevoir une notification indiquant qu’une réponse a été reçue.

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

Type d'événement

S’applique à