C# Класс HtmlKit.HtmlTagToken

An HTML tag token.
An HTML tag token.
Наследование: HtmlToken
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
HtmlTagToken ( string name, IEnumerable attributes, bool isEmptyElement ) : System

Initializes a new instance of the HtmlTagToken class.

Creates a new HtmlTagToken.

HtmlTagToken ( string name, bool isEndTag ) : System

Initializes a new instance of the HtmlTagToken class.

Creates a new HtmlTagToken.

WriteTo ( TextWriter output ) : void

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

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

Описание методов

HtmlTagToken() публичный Метод

Initializes a new instance of the HtmlTagToken class.
Creates a new HtmlTagToken.
/// is null. /// -or- /// is null. ///
public HtmlTagToken ( string name, IEnumerable attributes, bool isEmptyElement ) : System
name string The name of the tag.
attributes IEnumerable The attributes.
isEmptyElement bool true if the tag is an empty element; otherwise, false.
Результат System

HtmlTagToken() публичный Метод

Initializes a new instance of the HtmlTagToken class.
Creates a new HtmlTagToken.
/// is null. ///
public HtmlTagToken ( string name, bool isEndTag ) : System
name string The name of the tag.
isEndTag bool true if the tag is an end tag; otherwise, false.
Результат System

WriteTo() публичный Метод

Write the HTML tag to a System.IO.TextWriter.
Writes the HTML tag to a System.IO.TextWriter.
/// is null. ///
public WriteTo ( TextWriter output ) : void
output System.IO.TextWriter The output.
Результат void