IPageAdapter.HandleError(Exception, HtmlTextWriter) Method

Definition

Returns true if it handles the error. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

public:
 bool HandleError(Exception ^ e, System::Web::UI::HtmlTextWriter ^ writer);
public bool HandleError (Exception e, System.Web.UI.HtmlTextWriter writer);
abstract member HandleError : Exception * System.Web.UI.HtmlTextWriter -> bool
Public Function HandleError (e As Exception, writer As HtmlTextWriter) As Boolean

Parameters

e
Exception

System exception event.

writer
HtmlTextWriter

The HtmlTextWriter object.

Returns

true if the page adapter handles the error; otherwise, false.

Remarks

This method is called if an unhandled exception occurs during the life cycle of the page.

Applies to

See also