Interface IJsonSerializer
Assembly: Volo.Abp.Json.Abstractions.dll
Syntax
public interface IJsonSerializer
Methods
Deserialize(Type, string, bool)
Declaration
object Deserialize(Type type, string jsonString, bool camelCase = true)
Parameters
Returns
Deserialize<T>(string, bool)
Declaration
T Deserialize<T>(string jsonString, bool camelCase = true)
Parameters
Type |
Name |
Description |
string |
jsonString |
|
bool |
camelCase |
|
Returns
Type Parameters
Serialize(object, bool, bool)
Declaration
string Serialize(object obj, bool camelCase = true, bool indented = false)
Parameters
Returns
Extension Methods