JsonValue.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 can iterate through the JsonValue.

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

Syntax

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

Return Value

Type: System.Collections.Generic.IEnumerator<KeyValuePair<String, JsonValue>>
The enumerator for the JsonValue.

Implements

IEnumerable<T>.GetEnumerator()

.NET Framework Security

See Also

Reference

JsonValue Class

System.Json Namespace