HttpDiagnosticProvider.ResponseReceived Event

Definition

Subscribe to the ResponseReceived event to receive a notification that a response has been received.

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

Event Type

Applies to