JsonElement.ArrayEnumerator.IEnumerable<JsonElement>.GetEnumerator Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns an enumerator that iterates through a collection.
virtual System::Collections::Generic::IEnumerator<System::Text::Json::JsonElement> ^ System.Collections.Generic.IEnumerable<System.Text.Json.JsonElement>.GetEnumerator() = System::Collections::Generic::IEnumerable<System::Text::Json::JsonElement>::GetEnumerator;
System.Collections.Generic.IEnumerator<System.Text.Json.JsonElement> IEnumerable<JsonElement>.GetEnumerator ();
abstract member System.Collections.Generic.IEnumerable<System.Text.Json.JsonElement>.GetEnumerator : unit -> System.Collections.Generic.IEnumerator<System.Text.Json.JsonElement>
override this.System.Collections.Generic.IEnumerable<System.Text.Json.JsonElement>.GetEnumerator : unit -> System.Collections.Generic.IEnumerator<System.Text.Json.JsonElement>
Function GetEnumerator () As IEnumerator(Of JsonElement) Implements IEnumerable(Of JsonElement).GetEnumerator
Returns
An enumerator for an array of JsonElement that can be used to iterate through the collection.
Implements
Remarks
This member is an explicit interface member implementation. It can be used only when the JsonElement.ArrayEnumerator instance is cast to an [IEnumerable<JsonElement>](<xref:System.Collections.Generic.IEnumerable%601) interface.