/// <summary>
 /// Creates a <see cref="WebViewControlScriptNotifyEventArgs"/> from <see cref="Windows.Web.UI.WebViewControlScriptNotifyEventArgs"/>.
 /// </summary>
 /// <param name="args">The <see cref="Windows.Web.UI.WebViewControlScriptNotifyEventArgs"/> instance containing the event data.</param>
 /// <returns><see cref="WebViewControlScriptNotifyEventArgs"/></returns>
 public static WebViewControlScriptNotifyEventArgs ToWebViewControlScriptNotifyEventArgs(
     Windows.Web.UI.WebViewControlScriptNotifyEventArgs args) => new WebViewControlScriptNotifyEventArgs(args);
 internal WebViewControlScriptNotifyEventArgs(Windows.Web.UI.WebViewControlScriptNotifyEventArgs args)
 {
     _args = args;
 }