Gets or sets a value indicating whether an exception that ocurred when select operation executed has been handled.

Namespace:  Endeca.Web.UI
Assembly:  Endeca.Web (in Endeca.Web.dll) Version: 2.1.1.0 (2.1.1.620)

Syntax

C#
public bool ExceptionHandled { get; set; }
Visual Basic (Declaration)
Public Property ExceptionHandled As Boolean
Visual C++
public:
property bool ExceptionHandled {
	bool get ();
	void set (bool value);
}

Remarks

If this value is false, then the exception will be rethrown by the data source (unless the exception is EmptyQueryException, in which case null is return to data bound controls by the data source).

In the case of EmptyQueryException and PartialQueryException the default value will be true; for other exception types the default value is false.

See Also