HttpParseException Class
The exception that is thrown when a parse error occurs.
Assembly: System.Web (in System.Web.dll)
System::Exception
System::SystemException
System.Runtime.InteropServices::ExternalException
System.Web::HttpException
System.Web::HttpParseException
| Name | Description | |
|---|---|---|
![]() | HttpParseException() | Initializes a new instance of the HttpParseException class. |
![]() | HttpParseException(String^) | Initializes a new instance of the HttpParseException class with a specified error message. |
![]() | HttpParseException(String^, Exception^) | Initializes a new instance of the HttpParseException class with a specified error message and a reference to the inner. |
![]() | HttpParseException(String^, Exception^, String^, String^, Int32) | Initializes a new instance of the HttpParseException class with specific information about the source code being compiled and the line number on which the exception occurred. |
| Name | Description | |
|---|---|---|
![]() | Data | Gets a collection of key/value pairs that provide additional user-defined information about the exception.(Inherited from Exception.) |
![]() | ErrorCode | Gets the HRESULT of the error.(Inherited from ExternalException.) |
![]() | FileName | Gets the name of the file being parsed when the error occurs. |
![]() | HelpLink | Gets or sets a link to the help file associated with this exception.(Inherited from Exception.) |
![]() | HResult | Gets or sets HRESULT, a coded numerical value that is assigned to a specific exception.(Inherited from Exception.) |
![]() | InnerException | |
![]() | Line | Gets the number of the line being parsed when the error occurs. |
![]() | Message | Gets a message that describes the current exception.(Inherited from Exception.) |
![]() | ParserErrors | Gets the parser errors for the current exception. |
![]() | Source | Gets or sets the name of the application or the object that causes the error.(Inherited from Exception.) |
![]() | StackTrace | Gets a string representation of the immediate frames on the call stack.(Inherited from Exception.) |
![]() | TargetSite | Gets the method that throws the current exception.(Inherited from Exception.) |
![]() | VirtualPath | Gets the virtual path to source file that generated the error. |
![]() | WebEventCode | Gets the event codes that are associated with the HTTP exception.(Inherited from HttpException.) |
| Name | Description | |
|---|---|---|
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | GetBaseException() | |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetHtmlErrorMessage() | Gets the HTML error message to return to the client.(Inherited from HttpException.) |
![]() | GetHttpCode() | Gets the HTTP response status code to return to the client. (Inherited from HttpException.) |
![]() | GetObjectData(SerializationInfo^, StreamingContext) | When overridden in a derived class, sets the SerializationInfo object with information about the exception.(Overrides HttpException::GetObjectData(SerializationInfo^, StreamingContext).) |
![]() | GetType() | Gets the runtime type of the current instance.(Inherited from Exception.) |
![]() | ToString() | Returns a string that contains the HRESULT of the error.(Inherited from ExternalException.) |
The HttpParseException class is an HTTP-specific exception class that enables ASP.NET to output parser exception information. For more information on throwing and handling exceptions, see Handling and Throwing Exceptions.
The following example demonstrates how to use the HttpParseException to customize errors generated during page parsing. In this example, a customized HtmlSelect control is defined. If child elements of the custom control are not of a specified type then an HttpParseException is thrown in the overridden GetChildControlType method of a custom HtmlSelectBuilder. To generate a parse exception, change the child element literal MyCustomOption to any other string.
Available since 1.1
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

