C# Class CsQuery.Output.HtmlEncoderNone

Minimum HTML encoder. This only parses the absolute minimum required for correct interpretation (less-than, greater-than, ampersand). Everthing else is passed through.
Inheritance: IHtmlEncoder
显示文件 Open project: prepare/HTML-Renderer

Public Methods

Method Description
Encode ( string text, TextWriter output ) : void

Encodes text as HTML, writing the processed output to the TextWriter.

Method Details

Encode() public method

Encodes text as HTML, writing the processed output to the TextWriter.
public Encode ( string text, TextWriter output ) : void
text string /// The text to be encoded. ///
output System.IO.TextWriter /// The target for the ouput. ///
return void