C# Class formulate.app.Serialization.FieldsJsonConverter

Handles conversion of JSON to IFormField[].
This conversion is necessary to instantiate concrete instances of the IFormField interface. By avoiding embedding the full type name in the JSON, we can refactor names of classes without preventing deserialization later.
Inheritance: Newtonsoft.Json.JsonConverter
Afficher le fichier Open project: rhythmagency/formulate

Méthodes publiques

Méthode Description
CanConvert ( Type objectType ) : bool

Indicates whether or not this class can convert an object of the specified type.

ReadJson ( JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer ) : object

Deserializes JSON into an array of IFormField.

WriteJson ( JsonWriter writer, object value, JsonSerializer serializer ) : void

This does nothing (it must be implemented because it is abstract in the base class).

Private Methods

Méthode Description
InstantiateFieldByTypeId ( System.Guid typeId ) : IFormField

Creates a new instance of a form field by the field's type ID.

Method Details

CanConvert() public méthode

Indicates whether or not this class can convert an object of the specified type.
public CanConvert ( Type objectType ) : bool
objectType System.Type
Résultat bool

ReadJson() public méthode

Deserializes JSON into an array of IFormField.
public ReadJson ( JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer ) : object
reader Newtonsoft.Json.JsonReader
objectType System.Type
existingValue object
serializer Newtonsoft.Json.JsonSerializer
Résultat object

WriteJson() public méthode

This does nothing (it must be implemented because it is abstract in the base class).
public WriteJson ( JsonWriter writer, object value, JsonSerializer serializer ) : void
writer Newtonsoft.Json.JsonWriter
value object
serializer Newtonsoft.Json.JsonSerializer
Résultat void