Definition at line 66 of file SimpleJSON.cs.
◆ Enumerator() [1/2]
Definition at line 73 of file SimpleJSON.cs.
74 {
75 type = Type.Array;
76 m_Object =
default(Dictionary<string, JSONNode>.
Enumerator);
77 m_Array = aArrayEnum;
78 }
Enumerator(List< JSONNode >.Enumerator aArrayEnum)
◆ Enumerator() [2/2]
SimpleJSON.JSONNode.Enumerator.Enumerator |
( |
Dictionary< string, JSONNode >.Enumerator | aDictEnum | ) |
|
Definition at line 79 of file SimpleJSON.cs.
80 {
81 type = Type.Object;
82 m_Object = aDictEnum;
84 }
◆ MoveNext()
bool SimpleJSON.JSONNode.Enumerator.MoveNext |
( |
| ) |
|
◆ Current
KeyValuePair<string, JSONNode> SimpleJSON.JSONNode.Enumerator.Current |
|
get |
Definition at line 85 of file SimpleJSON.cs.
86 {
87 get
88 {
89 if (type == Type.Array)
90 return new KeyValuePair<string, JSONNode>(
string.Empty, m_Array.
Current);
91 else if (type == Type.Object)
93 return new KeyValuePair<string, JSONNode>(string.Empty, null);
94 }
95 }
KeyValuePair< string, JSONNode > Current
◆ IsValid
bool SimpleJSON.JSONNode.Enumerator.IsValid |
|
get |
Definition at line 72 of file SimpleJSON.cs.
72{ get { return type != Type.None; } }
The documentation for this struct was generated from the following file:
- C:/Interhaptics/sdk_unity/Interhaptics/Runtime/Platforms/Mobile/Dependencies/UnityCoreHaptics/Plugins/iOS/Editor/SimpleJSON.cs