Interhaptics SDK for Unity 1.6
Loading...
Searching...
No Matches
SimpleJSON.JSONNode.KeyEnumerator Struct Reference

Public Member Functions

 KeyEnumerator (List< JSONNode >.Enumerator aArrayEnum)
 
 KeyEnumerator (Dictionary< string, JSONNode >.Enumerator aDictEnum)
 
 KeyEnumerator (Enumerator aEnumerator)
 
bool MoveNext ()
 
KeyEnumerator GetEnumerator ()
 

Properties

string Current [get]
 

Detailed Description

Definition at line 115 of file SimpleJSON.cs.

Constructor & Destructor Documentation

◆ KeyEnumerator() [1/3]

SimpleJSON.JSONNode.KeyEnumerator.KeyEnumerator ( List< JSONNode >.Enumerator aArrayEnum)

Definition at line 118 of file SimpleJSON.cs.

118: this(new Enumerator(aArrayEnum)) { }

◆ KeyEnumerator() [2/3]

SimpleJSON.JSONNode.KeyEnumerator.KeyEnumerator ( Dictionary< string, JSONNode >.Enumerator aDictEnum)

Definition at line 119 of file SimpleJSON.cs.

119: this(new Enumerator(aDictEnum)) { }

◆ KeyEnumerator() [3/3]

SimpleJSON.JSONNode.KeyEnumerator.KeyEnumerator ( Enumerator aEnumerator)

Definition at line 120 of file SimpleJSON.cs.

120{ m_Enumerator = aEnumerator; }

Member Function Documentation

◆ GetEnumerator()

KeyEnumerator SimpleJSON.JSONNode.KeyEnumerator.GetEnumerator ( )

Definition at line 123 of file SimpleJSON.cs.

123{ return this; }

◆ MoveNext()

bool SimpleJSON.JSONNode.KeyEnumerator.MoveNext ( )

Definition at line 122 of file SimpleJSON.cs.

122{ return m_Enumerator.MoveNext(); }

References SimpleJSON.JSONNode.Enumerator.MoveNext().

Property Documentation

◆ Current

string SimpleJSON.JSONNode.KeyEnumerator.Current
get

Definition at line 121 of file SimpleJSON.cs.

121{ get { return m_Enumerator.Current.Key; } }
KeyValuePair< string, JSONNode > Current
Definition SimpleJSON.cs:86

The documentation for this struct was generated from the following file: