ExceptionRoutedEventArgs.ErrorException 属性

定义

获取导致错误情况的异常。

public:
 property Exception ^ ErrorException { Exception ^ get(); };
public Exception ErrorException { get; }
member this.ErrorException : Exception
Public ReadOnly Property ErrorException As Exception

属性值

Exception

用于详细描述特定错误情况的异常。

例外

尝试访问媒体文件遭到拒绝。

未找到媒体文件。

所安装的任何编解码器都不支持此媒体文件格式。

  • 或 -

无法识别此文件格式。

未检测到 Windows Media Player 版本 10 或更高版本。

  • 或 -

视频资源不足,无法播放媒体。

出现 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

适用于