ExceptionRoutedEventArgs.ErrorException 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得造成錯誤狀況的例外狀況。
public:
property Exception ^ ErrorException { Exception ^ get(); };
public Exception ErrorException { get; }
member this.ErrorException : Exception
Public ReadOnly Property ErrorException As Exception
屬性值
詳述特定錯誤狀況的例外狀況。
例外狀況
嘗試存取媒體檔案遭拒。
找不到媒體檔案。
顯示 COM 錯誤碼。
範例
下列範例會建立 的 ExceptionRoutedEventArgs 簡單事件處理常式。
private void Media_MediaFailed(object sender, ExceptionRoutedEventArgs args)
{
MessageBox.Show(args.ErrorException.Message);
}
Private Sub Media_MediaFailed(ByVal sender As Object, ByVal args As ExceptionRoutedEventArgs)
If (True) Then
MessageBox.Show(args.ErrorException.Message)
End If
End Sub