C# Class HtmlKit.HtmlScriptDataToken

An HTML token constisting of script data.
An HTML token consisting of script data.
Inheritance: HtmlDataToken
Afficher le fichier Open project: prepare/HTML-Renderer

Méthodes publiques

Méthode 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 méthode

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

WriteTo() public méthode

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.
Résultat void