ExceptionRoutedEventArgs.ErrorException 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取导致错误情况的异常。
public:
property Exception ^ ErrorException { Exception ^ get(); };
public Exception ErrorException { get; }
member this.ErrorException : Exception
Public ReadOnly Property ErrorException As Exception
属性值
用于详细描述特定错误情况的异常。
例外
尝试访问媒体文件遭到拒绝。
未找到媒体文件。
出现 COM 错误代码。
示例
The following example creates a simple event handler for 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