C# 클래스 numl.Serialization.JsonSerializer

An abstract JsonSerializer class.
상속: ISerializer
파일 보기 프로젝트 열기: sethjuarez/numl

공개 메소드들

메소드 설명
CanConvert ( Type type ) : bool

Determines whether this instance can convert the specified type.

Create ( ) : object

Creates an instance of the type to be deserialized

PostRead ( JsonReader reader ) : void

Reads the closing content.

PostWrite ( JsonWriter writer ) : void

Writes closing content.

PreWrite ( JsonWriter writer ) : void

Writes the opening as well as any static content.

Read ( JsonReader reader ) : object

Reads the specified reader.

Write ( JsonWriter writer, object value ) : void

Writes the specified value.

메소드 상세

CanConvert() 공개 추상적인 메소드

Determines whether this instance can convert the specified type.
public abstract CanConvert ( Type type ) : bool
type System.Type The type.
리턴 bool

Create() 공개 추상적인 메소드

Creates an instance of the type to be deserialized
public abstract Create ( ) : object
리턴 object

PostRead() 공개 메소드

Reads the closing content.
public PostRead ( JsonReader reader ) : void
reader JsonReader
리턴 void

PostWrite() 공개 메소드

Writes closing content.
public PostWrite ( JsonWriter writer ) : void
writer JsonWriter
리턴 void

PreWrite() 공개 메소드

Writes the opening as well as any static content.
public PreWrite ( JsonWriter writer ) : void
writer JsonWriter
리턴 void

Read() 공개 추상적인 메소드

Reads the specified reader.
public abstract Read ( JsonReader reader ) : object
reader JsonReader The reader.
리턴 object

Write() 공개 추상적인 메소드

Writes the specified value.
public abstract Write ( JsonWriter writer, object value ) : void
writer JsonWriter The writer.
value object The value.
리턴 void