/// <summary>
 /// Creates a <see cref="WebViewControlMoveFocusRequestedEventArgs"/> from <see cref="windows.Web.UI.Interop.WebViewControlMoveFocusRequestedEventArgs"/>.
 /// </summary>
 /// <param name="args">The <see cref="windows.Web.UI.Interop.WebViewControlMoveFocusRequestedEventArgs"/> instance containing the event data.</param>
 /// <returns><see cref="WebViewControlMoveFocusRequestedEventArgs"/></returns>
 public static WebViewControlMoveFocusRequestedEventArgs ToWebViewControlMoveFocusRequestedEventArgs(
     windows.Web.UI.Interop.WebViewControlMoveFocusRequestedEventArgs args) =>
 new WebViewControlMoveFocusRequestedEventArgs(args);
 internal WebViewControlMoveFocusRequestedEventArgs(windows.Web.UI.Interop.WebViewControlMoveFocusRequestedEventArgs args)
 {
     _args = args ?? throw new ArgumentNullException(nameof(args));
 }