C# Class CsQuery.Output.HtmlEncoderFull

Full HTML encoder. All entities with known HTML codes are parsed; everything above 160 becomes an HTML numeric-coded entity.
Inheritance: HtmlEncoderBasic
ファイルを表示 Open project: prepare/HTML-Renderer

Public Methods

Method Description
HtmlEncoderFull ( ) : System

Default constructor.

Protected Methods

Method Description
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.

Private Methods

Method Description
PopulateHtmlEntityMap ( ) : void

Method Details

HtmlEncoderFull() public method

Default constructor.
public HtmlEncoderFull ( ) : System
return System

TryEncode() protected method

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. ///
return bool