次の方法で共有


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 Version 10 以降が検出されません。

  • または -

メディア再生のためのビデオ リソースが不十分です。

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

適用対象