다음을 통해 공유


WebViewControl.ScriptNotify 이벤트

정의

컨트롤에 포함된 콘텐츠가 를 사용하여 window.external.notify앱에 문자열을 전달하면 트리거되는 이벤트입니다.

자세한 내용은 Windows.Web.UI.IWebViewControl을 참조하세요.

// Register
event_token ScriptNotify(TypedEventHandler<IWebViewControl, WebViewControlScriptNotifyEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
WebViewControl::ScriptNotify_revoker ScriptNotify(auto_revoke_t, TypedEventHandler<IWebViewControl, WebViewControlScriptNotifyEventArgs const&> const& handler) const;
public event TypedEventHandler<IWebViewControl,WebViewControlScriptNotifyEventArgs> ScriptNotify;
function onScriptNotify(eventArgs) { /* Your code */ }
webViewControl.addEventListener("scriptnotify", onScriptNotify);
webViewControl.removeEventListener("scriptnotify", onScriptNotify);
- or -
webViewControl.onscriptnotify = onScriptNotify;
Public Custom Event ScriptNotify As TypedEventHandler(Of IWebViewControl, WebViewControlScriptNotifyEventArgs) Implements ScriptNotify

이벤트 유형

구현

적용 대상

추가 정보