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
파일 보기 프로젝트 열기: prepare/HTML-Renderer

공개 메소드들

메소드 설명
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