JsonElement.EnumerateArray Method

Definition

Gets an enumerator to enumerate the values in the JSON array represented by this JsonElement.

public:
 System::Text::Json::JsonElement::ArrayEnumerator EnumerateArray();
public System.Text.Json.JsonElement.ArrayEnumerator EnumerateArray ();
member this.EnumerateArray : unit -> System.Text.Json.JsonElement.ArrayEnumerator
Public Function EnumerateArray () As JsonElement.ArrayEnumerator

Returns

An enumerator to enumerate the values in the JSON array represented by this JsonElement.

Exceptions

The parent JsonDocument has been disposed.

Remarks

For more information, see How to write custom serializers and deserializers with System.Text.Json.

Applies to