[]
Represents a serializer/deserializer for custom type in from/to json.
public interface IJsonSerializer
Deserialize json string to object.
object Deserialize(string json)
json
stringSerialize an object to json string.
string Serialize(object value)
value
object