C# 클래스 CsQuery.Output.HtmlEncoderFull

Full HTML encoder. All entities with known HTML codes are parsed; everything above 160 becomes an HTML numeric-coded entity.
상속: HtmlEncoderBasic
파일 보기 프로젝트 열기: prepare/HTML-Renderer

공개 메소드들

메소드 설명
HtmlEncoderFull ( ) : System

Default constructor.

보호된 메소드들

메소드 설명
TryEncode ( char c, string &encoded ) : bool

Determines of a character must be encoded; if so, encodes it as the output parameter and returns true; if not, returns false.

비공개 메소드들

메소드 설명
PopulateHtmlEntityMap ( ) : void

메소드 상세

HtmlEncoderFull() 공개 메소드

Default constructor.
public HtmlEncoderFull ( ) : System
리턴 System

TryEncode() 보호된 메소드

Determines of a character must be encoded; if so, encodes it as the output parameter and returns true; if not, returns false.
protected TryEncode ( char c, string &encoded ) : bool
c char /// The text string to encode. ///
encoded string /// [out] The encoded string. ///
리턴 bool