Settings for reading/writing JSON via JsonUtility.
public class JsonSettings
| name | description |
|---|---|
| JsonSettings() | The default constructor. |
| Converters { get; set; } | Additional converters to use when reading/writing JSON. |
| IncludesNullValues { get; set; } | True if null JSON properties should be read and/or written. |
| IsIndented { get; set; } | True if JSON output should be indented. |
| RejectsExtraProperties { get; set; } | True if JSON properties without corresponding object properties should throw an exception when reading JSON. |