LinqDataSourceInsertEventArgs.Exception Property

Definition

Gets the exception that was thrown while the data was being validated before the insert operation.

C#
public System.Web.UI.WebControls.LinqDataSourceValidationException Exception { get; }

Property Value

The exception, if an error occurred; otherwise, null.

Examples

The following example shows a handler for the Inserting event. It displays any validation exception messages by using a Label control.

C#
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;  
    }  
}  

Remarks

If a validation exception is thrown before the insert operation is performed, the exception is stored in the Exception property. In a handler for the Inserting event, you can retrieve the exception through the Exception property.

Applies to

Product Versions
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1