C# Class numl.Serialization.Supervised.SummarySerializer

Implements a Summary object serializer.
Inheritance: JsonSerializer
Afficher le fichier Open project: sethjuarez/numl

Méthodes publiques

Méthode Description
CanConvert ( Type type ) : bool

Returns True if the specified Type can be converted to a Summmary object.

Create ( ) : object

Creates a default Summary object.

Read ( JsonReader reader ) : object

Deserializes a Summary object from the given stream.

Write ( JsonWriter writer, object value ) : void

Serializes the given Summary object to the given stream.

Method Details

CanConvert() public méthode

Returns True if the specified Type can be converted to a Summmary object.
public CanConvert ( Type type ) : bool
type System.Type
Résultat bool

Create() public méthode

Creates a default Summary object.
public Create ( ) : object
Résultat object

Read() public méthode

Deserializes a Summary object from the given stream.
public Read ( JsonReader reader ) : object
reader JsonReader A JSON Reader object.
Résultat object

Write() public méthode

Serializes the given Summary object to the given stream.
public Write ( JsonWriter writer, object value ) : void
writer JsonWriter A JSON Writer object.
value object A Summary object.
Résultat void