Method ParseJson
| Improve this Doc View SourceParseJson(String)
Deserializes from JSON string.
Declaration
public static DataSet<T> ParseJson(string json)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | json | The JSON string. |
Returns
| Type | Description |
|---|---|
| DataSet<T> | The deserialized DataSet. |
ParseJson(Action<T>, String, IJsonCustomizer)
Deserializes from JSON string.
Declaration
public static DataSet<T> ParseJson(Action<T> initializer, string json, IJsonCustomizer customizer = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Action<T> | initializer | The initializer. |
| System.String | json | The JSON string. |
| IJsonCustomizer | customizer | The customizer. |
Returns
| Type | Description |
|---|---|
| DataSet<T> |