Method FromJsonString
FromJsonString(String)
Creates an instance of NoSQLConfig from a JSON
string.
Declaration
public static NoSQLConfig FromJsonString(string jsonString)
Parameters
| Type | Name | Description |
|---|---|---|
| String | jsonString | JSON representation of the configuration. |
Returns
| Type | Description |
|---|---|
| NoSQLConfig | An instance of NoSQLConfig representing the
configuration provided in jsonString. |
Remarks
See the remarks section of NoSQLConfig for the
description of the JSON format of the configuration.
Exceptions
| Type | Condition |
|---|---|
| ArgumentException | If failed to parse
jsonString. The parser exception will be
included as InnerException property.
|