Class JsonInputOptions
Represents options passed to FromJsonString(String, JsonInputOptions)
and DeserializeFromJson(ref Utf8JsonReader, JsonInputOptions).
Namespace: Oracle.NoSQL.SDK
Assembly: Oracle.NoSQL.SDK.dll
Syntax
public class JsonInputOptions : Object
Remarks
These options allow you to customize how the JSON input is parsed to
create FieldValue instances. For properties not
specified or
null, appropriate defaults will be used as
indicated below.
Constructors
| Name | Description |
|---|---|
| JsonInputOptions() |
Properties
| Name | Description |
|---|---|
| AllowComments | Gets or sets a value indicating whether comments are allowed in the JSON input. |
| AllowTrailingCommas | Gets or sets a value indicating whether trailing commas are allowed in the JSON input. |
| PreferDecimal | Gets or sets a value indicating whether to prefer using NumberValue over DoubleValue to deserialize JSON numbers. |