[]
Generates a workbook from a JSON string.
IList<JsonError> FromJson(string json, DeserializationOptions deserializationOptions = null)
| Type | Name | Description |
|---|---|---|
| string | json | The JSON |
| DeserializationOptions | deserializationOptions | The DeserializationOptions object. |
| Type | Description |
|---|---|
| IList<JsonError> | The errors in the JSON. |
Generates a workbook from a JSON stream.
IList<JsonError> FromJson(Stream stream, DeserializationOptions deserializationOptions = null)
| Type | Name | Description |
|---|---|---|
| Stream | stream | The stream |
| DeserializationOptions | deserializationOptions | The DeserializationOptions object. |
| Type | Description |
|---|---|
| IList<JsonError> | The errors in the JSON. |