C# Class HtmlKit.HtmlCDataToken

An HTML token constisting of [CDATA[.
An HTML token consisting of [CDATA[.
Inheritance: HtmlDataToken
Mostra file Open project: prepare/HTML-Renderer

Public Methods

Method Description
HtmlCDataToken ( string data ) : System

Initializes a new instance of the HtmlCDataToken class.

Creates a new HtmlCDataToken.

WriteTo ( TextWriter output ) : void

Write the HTML character data to a System.IO.TextWriter.

Writes the HTML character data to a System.IO.TextWriter, encoding it if it isn't already encoded.

Method Details

HtmlCDataToken() public method

Initializes a new instance of the HtmlCDataToken class.
Creates a new HtmlCDataToken.
/// is null. ///
public HtmlCDataToken ( string data ) : System
data string The character data.
return System

WriteTo() public method

Write the HTML character data to a System.IO.TextWriter.
Writes the HTML character data to a System.IO.TextWriter, encoding it if it isn't already encoded.
/// is null. ///
public WriteTo ( TextWriter output ) : void
output System.IO.TextWriter The output.
return void