NavigationFailedEventHandler 代理人
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
表示將處理 WebView.NavigationFailed 和 Frame.NavigationFailed 事件的方法。
public delegate void NavigationFailedEventHandler(Platform::Object ^ sender, NavigationFailedEventArgs ^ e);
[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.UI.Xaml.WinUIContract), 65536)]
[Windows.Foundation.Metadata.Guid(2546608982, 55019, 24530, 166, 117, 163, 57, 100, 14, 237, 186)]
public delegate void NavigationFailedEventHandler(object sender, NavigationFailedEventArgs e);
Public Delegate Sub NavigationFailedEventHandler(sender As Object, e As NavigationFailedEventArgs)
參數
- sender
-
Object
Platform::Object
附加處理常式的物件。
事件的事件資料。
- 屬性
範例
下列程式碼範例示範如何使用 NavigationFailed 事件。
void WebView1_NavigationFailed(object sender, NavigationFailedEventArgs e)
{
var dialog = new Windows.UI.Popups.MessageDialog();
dialog.Title = "Navigation Failed";
dialog.Content = String.Format("Could not navigate to {0}, Reason: {1}",
e.SourcePageType.ToString(), e.Exception.Message);
dialog.ShowAsync();
}