JsonElement.ObjectEnumerator.IEnumerable<JsonProperty>.GetEnumerator Method

Definition

Returns an enumerator that iterates through a collection.

 virtual System::Collections::Generic::IEnumerator<System::Text::Json::JsonProperty> ^ System.Collections.Generic.IEnumerable<System.Text.Json.JsonProperty>.GetEnumerator() = System::Collections::Generic::IEnumerable<System::Text::Json::JsonProperty>::GetEnumerator;
System.Collections.Generic.IEnumerator<System.Text.Json.JsonProperty> IEnumerable<JsonProperty>.GetEnumerator ();
abstract member System.Collections.Generic.IEnumerable<System.Text.Json.JsonProperty>.GetEnumerator : unit -> System.Collections.Generic.IEnumerator<System.Text.Json.JsonProperty>
override this.System.Collections.Generic.IEnumerable<System.Text.Json.JsonProperty>.GetEnumerator : unit -> System.Collections.Generic.IEnumerator<System.Text.Json.JsonProperty>
Function GetEnumerator () As IEnumerator(Of JsonProperty) Implements IEnumerable(Of JsonProperty).GetEnumerator

Returns

An enumerator for JsonProperty objects 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.ObjectEnumerator instance is cast to an IEnumerator<JsonProperty> interface.

Applies to