다음을 통해 공유


ILoggingChannel.LoggingEnabled 이벤트

정의

로깅 채널이 LoggingSession 또는 기타 이벤트 추적 및 디버깅 도구에 연결될 때 발생합니다.

// Register
event_token LoggingEnabled(TypedEventHandler<ILoggingChannel, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
ILoggingChannel::LoggingEnabled_revoker LoggingEnabled(auto_revoke_t, TypedEventHandler<ILoggingChannel, IInspectable const&> const& handler) const;
event TypedEventHandler<ILoggingChannel,object> LoggingEnabled;
function onLoggingEnabled(eventArgs) { /* Your code */ }
iLoggingChannel.addEventListener("loggingenabled", onLoggingEnabled);
iLoggingChannel.removeEventListener("loggingenabled", onLoggingEnabled);
- or -
iLoggingChannel.onloggingenabled = onLoggingEnabled;
Event LoggingEnabled As TypedEventHandler(Of ILoggingChannel, Object) 

이벤트 유형

적용 대상

추가 정보