internal WebViewControlNavigationStartingEventArgs(windows.Web.UI.WebViewControlNavigationStartingEventArgs args)
 {
     _args = args;
     Uri   = args.Uri;
 }
 internal WebViewControlNavigationStartingEventArgs(windows.Web.UI.WebViewControlNavigationStartingEventArgs args, Uri uri)
     : this(args)
 {
     Uri = uri;
 }
 /// <summary>
 /// Creates a <see cref="WebViewControlNavigationStartingEventArgs"/> from <see cref="windows.Web.UI.WebViewControlNavigationStartingEventArgs"/>.
 /// </summary>
 /// <param name="args">The <see cref="windows.Web.UI.WebViewControlNavigationStartingEventArgs"/> instance containing the event data.</param>
 /// <returns><see cref="WebViewControlNavigationStartingEventArgs"/>.</returns>
 public static WebViewControlNavigationStartingEventArgs ToWebViewControlNavigationStartingEventArgs(
     windows.Web.UI.WebViewControlNavigationStartingEventArgs args) =>
 new WebViewControlNavigationStartingEventArgs(args);