C# 클래스 HtmlKit.HtmlDataToken

An HTML token constisting of character data.
An HTML token consisting of character data.
상속: HtmlToken
파일 보기 프로젝트 열기: prepare/HTML-Renderer

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
HtmlDataToken ( string data ) : System

Initializes a new instance of the HtmlDataToken class.

Creates a new HtmlDataToken.

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.

보호된 메소드들

메소드 설명
HtmlDataToken ( HtmlTokenKind kind, string data ) : System

Initializes a new instance of the HtmlDataToken class.

Creates a new HtmlDataToken.

메소드 상세

HtmlDataToken() 보호된 메소드

Initializes a new instance of the HtmlDataToken class.
Creates a new HtmlDataToken.
/// is not a valid . /// /// is null. ///
protected HtmlDataToken ( HtmlTokenKind kind, string data ) : System
kind HtmlTokenKind The kind of character data.
data string The character data.
리턴 System

HtmlDataToken() 공개 메소드

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

WriteTo() 공개 메소드

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.
리턴 void