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
Afficher le fichier Open project: prepare/HTML-Renderer

Méthodes publiques

Méthode Description
HtmlEncoderFull ( ) : System

Default constructor.

Méthodes protégées

Méthode 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

Méthode Description
PopulateHtmlEntityMap ( ) : void

Method Details

HtmlEncoderFull() public méthode

Default constructor.
public HtmlEncoderFull ( ) : System
Résultat System

TryEncode() protected méthode

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. ///
Résultat bool