Class XhtmlValidator
Provide methods for XHTML validation
Inheritance
Namespace: Telerik.Reporting.Processing
Assembly: Telerik.Reporting.dll
Syntax
public class XhtmlValidator
Constructors
XhtmlValidator()
Declaration
public XhtmlValidator()
Methods
IsValidXhtml(String)
Determines if the provided markup is valid XHTML that HtmlTextBox can parse. If the provided value is an expression, true is returned.
Declaration
public static bool IsValidXhtml(string markup)
Parameters
System.String
markup
The XHTML markup. |
Returns
System.Boolean
True if the XHTML is valid. |
ValidateXhtml(String)
Determines if the provided markup is valid XHTML that HtmlTextBox can parse. If the XHTML parse operation fail exception is thrown. If the provided value is an expression, no exception is thrown.
Declaration
public static void ValidateXhtml(string markup)
Parameters
System.String
markup
The XHTML markup. |