C# 클래스 HtmlKit.HtmlToken

An abstract HTML token class.
An abstract HTML token class.
파일 보기 프로젝트 열기: prepare/HTML-Renderer 1 사용 예제들

공개 메소드들

메소드 설명
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.

보호된 메소드들

메소드 설명
HtmlToken ( HtmlTokenKind kind ) : System

Initializes a new instance of the HtmlToken class.

Creates a new HtmlToken.

메소드 상세

HtmlToken() 보호된 메소드

Initializes a new instance of the HtmlToken class.
Creates a new HtmlToken.
protected HtmlToken ( HtmlTokenKind kind ) : System
kind HtmlTokenKind The kind of token.
리턴 System

ToString() 공개 메소드

Returns a System.String that represents the current HtmlToken.
Returns a System.String that represents the current HtmlToken.
public ToString ( ) : string
리턴 string

WriteTo() 공개 추상적인 메소드

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