C# Class HtmlKit.HtmlToken

An abstract HTML token class.
An abstract HTML token class.
Afficher le fichier Open project: prepare/HTML-Renderer Class Usage Examples

Méthodes publiques

Méthode Description
ToString ( ) : string

Returns a System.String that represents the current HtmlToken.

Returns a System.String that represents the current HtmlToken.

WriteTo ( TextWriter output ) : void

Write the HTML token to a System.IO.TextWriter.

Writes the HTML token to a System.IO.TextWriter.

Méthodes protégées

Méthode Description
HtmlToken ( HtmlTokenKind kind ) : System

Initializes a new instance of the HtmlToken class.

Creates a new HtmlToken.

Method Details

HtmlToken() protected méthode

Initializes a new instance of the HtmlToken class.
Creates a new HtmlToken.
protected HtmlToken ( HtmlTokenKind kind ) : System
kind HtmlTokenKind The kind of token.
Résultat System

ToString() public méthode

Returns a System.String that represents the current HtmlToken.
Returns a System.String that represents the current HtmlToken.
public ToString ( ) : string
Résultat string

WriteTo() public abstract méthode

Write the HTML token to a System.IO.TextWriter.
Writes the HTML token to a System.IO.TextWriter.
/// is null. ///
public abstract WriteTo ( TextWriter output ) : void
output System.IO.TextWriter The output.
Résultat void