C# 클래스 Newtonsoft.Json.Linq.JTokenReader

Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
상속: JsonReader, IJsonLineInfo
파일 보기 프로젝트 열기: runegri/Applicable 1 사용 예제들

Private Properties

프로퍼티 타입 설명
GetEndToken JsonToken?
IJsonLineInfo bool
ReadInto bool
ReadOver bool
ReadToEnd bool
SetEnd bool
SetToken void

공개 메소드들

메소드 설명
JTokenReader ( JToken token ) : System

Initializes a new instance of the JTokenReader class.

Read ( ) : bool

Reads the next JSON token from the stream.

ReadAsBytes ( ) : byte[]

Reads the next JSON token from the stream as a T:Byte[].

비공개 메소드들

메소드 설명
GetEndToken ( JContainer c ) : JsonToken?
IJsonLineInfo ( ) : bool
ReadInto ( JContainer c ) : bool
ReadOver ( JToken t ) : bool
ReadToEnd ( ) : bool
SetEnd ( JContainer c ) : bool
SetToken ( JToken token ) : void

메소드 상세

JTokenReader() 공개 메소드

Initializes a new instance of the JTokenReader class.
public JTokenReader ( JToken token ) : System
token JToken The token to read from.
리턴 System

Read() 공개 메소드

Reads the next JSON token from the stream.
public Read ( ) : bool
리턴 bool

ReadAsBytes() 공개 메소드

Reads the next JSON token from the stream as a T:Byte[].
public ReadAsBytes ( ) : byte[]
리턴 byte[]