[]
Defines an abstract class for json converter.
public abstract class JsonConverter : BaseConverter
Name | Description |
---|---|
JsonConverter() |
Name | Description |
---|---|
CanConvert(Type) | Determines whether this instance can convert the specified object type. |
CanConvert(Type, IContext) | Determines whether this instance can convert the specified object type. |
ConvertFrom(object, object) | Deserialize an object from the specified value. |
ConvertTo(object) | Serialize the specified value to a string. |
ReadJson(JsonReader, Type, object) | Reads the JSON representation of the object. |
Write(BaseWriter, object, IContext) | Writes the specified value. |
WriteJson(JsonWriter, object) | Writes the JSON representation of the object. |