Version 3.3.0.1

JsonConfig class

Namespace: Sirenix.Serialization
Assembly: Sirenix.Serialization
public static class JsonConfig
Contains various string constants used by the JsonDataWriter, JsonDataReader and JsonTextReader classes.
Inheritance
  • System.Object
  • JsonConfig

Fields

EXTERNAL_GUID_REF_SIG
The beginning of the content of an external reference by guid entry.
public const string EXTERNAL_GUID_REF_SIG = "$guidref"
EXTERNAL_INDEX_REF_SIG
The beginning of the content of an external reference by index entry.
public const string EXTERNAL_INDEX_REF_SIG = "$eref"
EXTERNAL_STRING_REF_SIG_FIXED
The beginning of the content of an external reference by string entry. This is a new entry using the valid format where the ref string is written as an escaped string.
public const string EXTERNAL_STRING_REF_SIG_FIXED = "$fstrref"
EXTERNAL_STRING_REF_SIG_OLD
The beginning of the content of an external reference by string entry. This is an old entry using an invalid data format where the ref string is dumped inline without escaping.
public const string EXTERNAL_STRING_REF_SIG_OLD = "$strref"
ID_SIG
The named of a node id entry.
public const string ID_SIG = "$id"
INTERNAL_REF_SIG
The beginning of the content of an internal reference entry.
public const string INTERNAL_REF_SIG = "$iref"
PRIMITIVE_ARRAY_CONTENT_SIG
The name of a primitive array content entry.
public const string PRIMITIVE_ARRAY_CONTENT_SIG = "$pcontent"
PRIMITIVE_ARRAY_LENGTH_SIG
The name of a primitive array length entry.
public const string PRIMITIVE_ARRAY_LENGTH_SIG = "$plength"
REGULAR_ARRAY_CONTENT_SIG
The name of a regular array content entry.
public const string REGULAR_ARRAY_CONTENT_SIG = "$rcontent"
REGULAR_ARRAY_LENGTH_SIG
The name of a regular array length entry.
public const string REGULAR_ARRAY_LENGTH_SIG = "$rlength"
TYPE_SIG
The name of a type entry.
public const string TYPE_SIG = "$type"