LinqDataSourceStatusEventArgs.Exception プロパティ

定義

データ操作時にスローされた例外を取得します。

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

プロパティ値

エラーが発生した場合は、例外を表す Exception オブジェクト。それ以外の場合は、null

次の例は、 イベントのイベント ハンドラーを Inserted 示しています。 イベント ハンドラーで、 プロパティが の Exception 場合、 null製品 ID は プロパティの Result オブジェクトから取得されます。 製品 ID はテーブルの主キーであり、データベースによって設定されるため、値は挿入操作が完了するまで認識されません。 プロパティが と等しくない場合、 Exception 例外メッセージがログに null記録されます。 その後、 ExceptionHandled プロパティは に true設定されます。

protected void LinqDataSource_Inserted(object sender, LinqDataSourceStatusEventArgs e)
{
    if (e.Exception == null)
    {
        Product newProduct = (Product)e.Result;
        Literal1.Text = "The new product id is " + newProduct.ProductID;
        Literal1.Visible = true;            
    }
    else
    {
        LogError(e.Exception.Message);
        Literal1.Text = "We are sorry. There was a problem saving the record. The administrator has been notified.";
        Literal1.Visible = true;
        e.ExceptionHandled = true;            
    }
}
Protected Sub LinqDataSource_Inserted(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.LinqDataSourceStatusEventArgs)
    If (IsNothing(e.Exception)) Then
        Dim newProduct As Product
        newProduct = CType(e.Result, Product)
        Literal1.Text = "The new product id is " & newProduct.ProductID
        Literal1.Visible = True
    Else
        LogError(e.Exception.Message)
        Literal1.Text = "We are sorry. There was a problem saving the record. The administrator has been notified."
        Literal1.Visible = True
        e.ExceptionHandled = True
    End If
End Sub

注釈

データ操作中に例外が発生した場合、例外は プロパティに Exception 格納されます。 、および イベントのイベント ハンドラーをContextCreatedDeletedSelectedInserted作成し、 プロパティを使用して例外 (存在する場合) をException取得できます。Updated

適用対象