HttpDiagnosticProvider.RequestSent 이벤트

정의

RequestSent 이벤트를 구독하여 요청이 전송되었다는 알림을 받습니다.

// Register
event_token RequestSent(TypedEventHandler<HttpDiagnosticProvider, HttpDiagnosticProviderRequestSentEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
HttpDiagnosticProvider::RequestSent_revoker RequestSent(auto_revoke_t, TypedEventHandler<HttpDiagnosticProvider, HttpDiagnosticProviderRequestSentEventArgs const&> const& handler) const;
public event TypedEventHandler<HttpDiagnosticProvider,HttpDiagnosticProviderRequestSentEventArgs> RequestSent;
function onRequestSent(eventArgs) { /* Your code */ }
httpDiagnosticProvider.addEventListener("requestsent", onRequestSent);
httpDiagnosticProvider.removeEventListener("requestsent", onRequestSent);
- or -
httpDiagnosticProvider.onrequestsent = onRequestSent;
Public Custom Event RequestSent As TypedEventHandler(Of HttpDiagnosticProvider, HttpDiagnosticProviderRequestSentEventArgs) 

이벤트 유형

적용 대상