示例#1
0
 internal WebViewControlNavigationCompletedEventArgs(Windows.Web.UI.WebViewControlNavigationCompletedEventArgs args, Uri uri)
     : this(args)
 {
     Uri = uri;
 }
示例#2
0
 /// <summary>
 /// Creates a <see cref="WebViewControlNavigationCompletedEventArgs"/> from <see cref="Windows.Web.UI.WebViewControlNavigationCompletedEventArgs"/>.
 /// </summary>
 /// <param name="args">The <see cref="Windows.Web.UI.WebViewControlNavigationCompletedEventArgs"/> instance containing the event data.</param>
 /// <returns><see cref="WebViewControlNavigationCompletedEventArgs"/></returns>
 public static WebViewControlNavigationCompletedEventArgs ToWebViewControlNavigationCompletedEventArgs(
     Windows.Web.UI.WebViewControlNavigationCompletedEventArgs args) =>
 new WebViewControlNavigationCompletedEventArgs(args);
示例#3
0
 internal WebViewControlNavigationCompletedEventArgs(Windows.Web.UI.WebViewControlNavigationCompletedEventArgs args)
 {
     IsSuccess      = args.IsSuccess;
     Uri            = args.Uri;
     WebErrorStatus = (WebErrorStatus)args.WebErrorStatus;
 }