|
override JSONNodeType | Tag [get] |
|
override bool | IsNull [get] |
|
override string | Value [get, set] |
|
override bool | AsBool [get, set] |
|
JSONNodeType | Tag [get] |
|
virtual JSONNode | this[int aIndex] [get, set] |
|
virtual JSONNode | this[string aKey] [get, set] |
|
virtual string | Value [get, set] |
|
virtual int | Count [get] |
|
virtual bool | IsNumber [get] |
|
virtual bool | IsString [get] |
|
virtual bool | IsBoolean [get] |
|
virtual bool | IsNull [get] |
|
virtual bool | IsArray [get] |
|
virtual bool | IsObject [get] |
|
virtual bool | Inline [get, set] |
|
virtual IEnumerable< JSONNode > | Children [get] |
|
IEnumerable< JSONNode > | DeepChildren [get] |
|
IEnumerable< KeyValuePair< string, JSONNode > > | Linq [get] |
|
KeyEnumerator | Keys [get] |
|
ValueEnumerator | Values [get] |
|
virtual double | AsDouble [get, set] |
|
virtual int | AsInt [get, set] |
|
virtual float | AsFloat [get, set] |
|
virtual bool | AsBool [get, set] |
|
virtual long | AsLong [get, set] |
|
virtual JSONArray | AsArray [get] |
|
virtual JSONObject | AsObject [get] |
|
Definition at line 1162 of file SimpleJSON.cs.
◆ Clone()
override JSONNode SimpleJSON.JSONNull.Clone |
( |
| ) |
|
|
virtual |
◆ CreateOrGet()
static JSONNull SimpleJSON.JSONNull.CreateOrGet |
( |
| ) |
|
|
static |
◆ Equals()
override bool SimpleJSON.JSONNull.Equals |
( |
object | obj | ) |
|
Definition at line 1194 of file SimpleJSON.cs.
1195 {
1196 if (object.ReferenceEquals(this, obj))
1197 return true;
1198 return (obj is JSONNull);
1199 }
◆ GetEnumerator()
override Enumerator SimpleJSON.JSONNull.GetEnumerator |
( |
| ) |
|
◆ GetHashCode()
override int SimpleJSON.JSONNull.GetHashCode |
( |
| ) |
|
◆ reuseSameInstance
bool SimpleJSON.JSONNull.reuseSameInstance = true |
|
static |
◆ AsBool
override bool SimpleJSON.JSONNull.AsBool |
|
getset |
Definition at line 1183 of file SimpleJSON.cs.
1184 {
1185 get { return false; }
1186 set { }
1187 }
◆ IsNull
override bool SimpleJSON.JSONNull.IsNull |
|
get |
◆ Tag
◆ Value
override string SimpleJSON.JSONNull.Value |
|
getset |
Definition at line 1178 of file SimpleJSON.cs.
1179 {
1180 get { return "null"; }
1181 set { }
1182 }
The documentation for this class was generated from the following file:
- C:/Interhaptics/sdk_unity/Interhaptics/Runtime/Platforms/Mobile/Dependencies/UnityCoreHaptics/Plugins/iOS/Editor/SimpleJSON.cs