Struct SerializedArrayView.Enumerator
Enumerates the elements of Serialized
Inherited Members
Namespace: Unity.Serialization.Json
Assembly: Unity.Serialization.dll
Syntax
public struct SerializedArrayView.Enumerator : IEnumerator<SerializedValueView>, IEnumerator, IDisposable
Properties
Current
The element in the Serialized
Declaration
public SerializedValueView Current { get; }
Property Value
Type | Description |
---|---|
Serialized |
Exceptions
Type | Condition |
---|---|
Invalid |
The enumerator is positioned before the first element of the collection or after the last element. |
Methods
Dispose()
Releases all resources used by the Serialized
Declaration
public void Dispose()
MoveNext()
Advances the enumerator to the next element of the Serialized
Declaration
public bool MoveNext()
Returns
Type | Description |
---|---|
bool | true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection. |
Reset()
Sets the enumerator to its initial position, which is before the first element in the collection.
Declaration
public void Reset()