IPageAdapter.HandleError(Exception, HtmlTextWriter) Method
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.
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
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.