C# Class HtmlKit.HtmlScriptDataToken

An HTML token constisting of script data.
An HTML token consisting of script data.
Inheritance: HtmlDataToken
Datei anzeigen Open project: prepare/HTML-Renderer

Public Methods

Method Description
HtmlScriptDataToken ( string data ) : System

Initializes a new instance of the HtmlScriptDataToken class.

Creates a new HtmlScriptDataToken.

WriteTo ( TextWriter output ) : void

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

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

Method Details

HtmlScriptDataToken() public method

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

WriteTo() public method

Write the HTML script data to a System.IO.TextWriter.
Writes the HTML script 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