C# 클래스 CsQuery.Output.HtmlEncoderMinimum

Minimum HTML encoder. This only parses the absolute minimum required for correct interpretation (less-than, greater-than, ampersand). Everthing else is passed through.
상속: HtmlEncoderBase
파일 보기 프로젝트 열기: prepare/HTML-Renderer

보호된 메소드들

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

TryEncodeAstralPlane ( int c, string &encoded ) : bool

Overrides default astral plane encoding, causing unicode characters to never be HTML encoded.

메소드 상세

TryEncode() 보호된 메소드

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. ///
리턴 bool

TryEncodeAstralPlane() 보호된 메소드

Overrides default astral plane encoding, causing unicode characters to never be HTML encoded.
protected TryEncodeAstralPlane ( int c, string &encoded ) : bool
c int /// The text string to encode. ///
encoded string /// [out] Null always (never encodes) ///
리턴 bool