JsonArray.GetEnumerator Method

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Returns an enumerator that iterates through the JsonValue objects in the array.

Namespace:  System.Json
Assembly:  System.Json (in System.Json.dll)

Syntax

'Declaration
Public Function GetEnumerator As IEnumerator(Of JsonValue)
public IEnumerator<JsonValue> GetEnumerator()
public:
virtual IEnumerator<JsonValue^>^ GetEnumerator() sealed
abstract GetEnumerator : unit -> IEnumerator<JsonValue> 
override GetEnumerator : unit -> IEnumerator<JsonValue> 
public final function GetEnumerator() : IEnumerator<JsonValue>

Return Value

Type: System.Collections.Generic.IEnumerator<JsonValue>
An enumerator that iterates through the JsonValue elements in the array.

Implements

IEnumerable<T>.GetEnumerator()

.NET Framework Security

See Also

Reference

JsonArray Class

System.Json Namespace