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