LinqDataSourceUpdateEventArgs.Exception Property

Definition

Gets the exception that was thrown while the data was being validated before the update 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 an event handler for the Updating event. It displays any validation exception messages by using a Label control.

C#
protected void LinqDataSource_Updating(object sender,   
        LinqDataSourceUpdateEventArgs 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 raised before the update operation is performed, the exception is stored in the Exception property. In an event handler for the Updating 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