HttpDiagnosticProvider.ResponseReceived Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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)