C# 클래스 Mapsui.Geometries.WellKnownText.WktStreamTokenizer

Reads a stream of Well Known Text (wkt) string and returns a stream of tokens.
상속: StreamTokenizer
파일 보기 프로젝트 열기: pauldendulk/Mapsui 1 사용 예제들

공개 메소드들

메소드 설명
ReadAuthority ( string &authority, long &authorityCode ) : void

Reads the authority and authority code.

ReadDoubleQuotedWord ( ) : string

Reads a string inside double quotes.

White space inside quotes is preserved.

WktStreamTokenizer ( TextReader reader ) : System

Initializes a new instance of the WktStreamTokenizer class.

The WktStreamTokenizer class ais in reading WKT streams.

비공개 메소드들

메소드 설명
ReadToken ( string expectedToken ) : void

Reads a token and checks it is what is expected.

메소드 상세

ReadAuthority() 공개 메소드

Reads the authority and authority code.
public ReadAuthority ( string &authority, long &authorityCode ) : void
authority string String to place the authority in.
authorityCode long String to place the authority code in.
리턴 void

ReadDoubleQuotedWord() 공개 메소드

Reads a string inside double quotes.
White space inside quotes is preserved.
public ReadDoubleQuotedWord ( ) : string
리턴 string

WktStreamTokenizer() 공개 메소드

Initializes a new instance of the WktStreamTokenizer class.
The WktStreamTokenizer class ais in reading WKT streams.
public WktStreamTokenizer ( TextReader reader ) : System
reader System.IO.TextReader A TextReader that contains
리턴 System