SqlDataSourceStatusEventArgs.ExceptionHandled Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value indicating whether an exception thrown by the database has been handled.
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
Property Value
true
if an exception thrown by the database has been handled and should not be thrown by the SqlDataSource control; otherwise, false
.
Remarks
If the database throws an exception, the ExceptionHandled property is set to false
and the exception is wrapped by the Exception property. If you use an SqlDataSourceStatusEventHandler, you can check the Exception property and handle the exception. If you handle the exception, set the ExceptionHandled property to true
or the SqlDataSource control will throw an exception.