Struct JsonWriterOptions
Structure used to define custom behavior when writing JSON using the JsonWriter.
Namespace: Unity.Serialization.Json
Syntax
public struct JsonWriterOptions
Properties
Minified
Gets or sets the value indicating whether the JsonWriter should skip formatting the output. This skips indentation, newlines and whitespace.
Declaration
public bool Minified { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
Simplified
Gets or sets the value indicating whether the JsonWriter should use JSON formatting. This skips optional quotes and commas.
Declaration
public bool Simplified { get; set; }
Property Value
Type | Description |
---|---|
Boolean |