C# 클래스 CsQuery.HtmlParser.BOMReader

A class to parse and expose information about the byte order marks (BOM) for a stream.
파일 보기 프로젝트 열기: prepare/HTML-Renderer 1 사용 예제들

공개 메소드들

메소드 설명
BOMReader ( Stream stream ) : System

Default constructor.

GetEncoding ( Encoding defaultEncoding ) : Encoding

Gets the encoding, or the default encoding provided if no explicit encoding is available

보호된 메소드들

메소드 설명
Parse ( ) : void

Parses the input stream to obtain an encoding

비공개 메소드들

메소드 설명
GetEncodingFromXML ( ) : Encoding
GetFileEncoding ( ) : Encoding
Matches ( byte buffer ) : bool

Test if the header matches the bytes passed (up to the length of the array passed)

메소드 상세

BOMReader() 공개 메소드

Default constructor.
public BOMReader ( Stream stream ) : System
stream Stream /// The stream to analyze. ///
리턴 System

GetEncoding() 공개 메소드

Gets the encoding, or the default encoding provided if no explicit encoding is available
public GetEncoding ( Encoding defaultEncoding ) : Encoding
defaultEncoding System.Text.Encoding
리턴 System.Text.Encoding

Parse() 보호된 메소드

Parses the input stream to obtain an encoding
protected Parse ( ) : void
리턴 void