Class
HtmlParserMessage

A message from HtmlParser.

(c) 1998-2000 (W3C) MIT, INRIA, Keio University See HtmlParser.cs for the copyright notice. Derived from HTML HtmlParser Release 4 Aug 2000

Definition

Namespace:Telerik.Windows.Documents.FormatProviders.Html.Parsing

Assembly:Telerik.Windows.Controls.RichTextBox.dll

Syntax:

cs-api-definition
public class HtmlParserMessage

Inheritance: objectHtmlParserMessage

Properties

Column

Represents a column in the HTML parser message, which is used to handle the representation and processing of HTML elements in tabular format.

Declaration

cs-api-definition
public int Column { get; }

Property Value

int

Filename

Gets the filename associated with the HtmlParserMessage.

Declaration

cs-api-definition
public string Filename { get; }

Property Value

string

Level

Represents the different severity levels of messages generated during the HTML parsing process.

Declaration

cs-api-definition
public MessageLevel Level { get; }

Property Value

MessageLevel

Line

Represents a line in the HTML parser message, containing information about parsing errors or warnings.

Declaration

cs-api-definition
public int Line { get; }

Property Value

int

Message

Represents a message generated during the parsing process of HTML content.

Declaration

cs-api-definition
public string Message { get; }

Property Value

string

Methods

ToString()

Returns a string representation of the current HtmlParserMessage instance.

Declaration

cs-api-definition
public override string ToString()

Returns

string

A string that represents the current HtmlParserMessage.

Overrides object.ToString()