C# Класс 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.
Наследование: IHtmlEncoder
Показать файл Открыть проект

Открытые методы

Метод Описание
Encode ( string text, TextWriter output ) : void

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

Описание методов

Encode() публичный Метод

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. ///
Результат void