C# 클래스 JsonConversionsDemo.CollectionImporterBase

An abstract base class for importer implementations that can import a concrete collection instance from a JSON array.
상속: Jayrock.Json.Conversion.Converters.ImporterBase
파일 보기 프로젝트 열기: atifaziz/Jayrock

공개 메소드들

메소드 설명
CollectionImporterBase ( Type outputType, Type elementType ) : System

보호된 메소드들

메소드 설명
CreateCollection ( ) : object
ImportElements ( object collection, Jayrock.Json.Conversion.ImportContext context, Jayrock.Json.JsonReader reader ) : void
ImportFromArray ( Jayrock.Json.Conversion.ImportContext context, Jayrock.Json.JsonReader reader ) : object

메소드 상세

CollectionImporterBase() 공개 메소드

public CollectionImporterBase ( Type outputType, Type elementType ) : System
outputType System.Type
elementType System.Type
리턴 System

CreateCollection() 보호된 추상적인 메소드

protected abstract CreateCollection ( ) : object
리턴 object

ImportElements() 보호된 추상적인 메소드

protected abstract ImportElements ( object collection, Jayrock.Json.Conversion.ImportContext context, Jayrock.Json.JsonReader reader ) : void
collection object
context Jayrock.Json.Conversion.ImportContext
reader Jayrock.Json.JsonReader
리턴 void

ImportFromArray() 보호된 메소드

protected ImportFromArray ( Jayrock.Json.Conversion.ImportContext context, Jayrock.Json.JsonReader reader ) : object
context Jayrock.Json.Conversion.ImportContext
reader Jayrock.Json.JsonReader
리턴 object