LinqDataSourceInsertEventArgs.ExceptionHandled プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
例外が既に処理済みで、再度スローする必要がないかどうかを示す値を取得または設定します。
public:
property bool ExceptionHandled { bool get(); void set(bool value); };
public bool ExceptionHandled { get; set; }
member this.ExceptionHandled : bool with get, set
Public Property ExceptionHandled As Boolean
プロパティ値
例外が処理された場合は true
。それ以外の場合は false
。
例
次の例は、 イベントのイベント ハンドラーを Inserting 示しています。 コントロールを使用して検証例外メッセージが Label 表示されます。
Protected Sub LinqDataSource_Inserting(ByVal sender As Object, _
ByVal e As LinqDataSourceInsertEventArgs)
If (e.Exception IsNot Nothing) Then
For Each innerException As KeyValuePair(Of String, Exception) _
In e.Exception.InnerExceptions
Label1.Text &= innerException.Key & ": " & _
innerException.Value.Message + "<br />"
Next
e.ExceptionHandled = True
End If
End Sub
protected void LinqDataSource_Inserting(object sender,
LinqDataSourceInsertEventArgs e)
{
if (e.Exception != null)
{
foreach (KeyValuePair<string, Exception> innerException in
e.Exception.InnerExceptions)
{
Label1.Text += innerException.Key + ": " +
innerException.Value.Message + "<br />";
}
e.ExceptionHandled = true;
}
}
注釈
イベントのイベント ハンドラーを作成して、 Inserting 挿入操作の前に発生した検証例外を調べることができます。 例外を処理し、再度スローしたくない場合は、 プロパティを ExceptionHandled に true
設定します。 プロパティを ExceptionHandled に true
設定しない場合、例外は呼び出し履歴の次のイベント ハンドラーに反映されます。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET