JsonElement.ObjectEnumerator.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 the properties of an object.
public:
System::Text::Json::JsonElement::ObjectEnumerator GetEnumerator();
public System.Text.Json.JsonElement.ObjectEnumerator GetEnumerator ();
member this.GetEnumerator : unit -> System.Text.Json.JsonElement.ObjectEnumerator
Public Function GetEnumerator () As JsonElement.ObjectEnumerator
Returns
An enumerator that can be used to iterate through the object.
Remarks
The enumerator will enumerate the properties in the order they are declared, and when an object has multiple definitions of a single property, they will all individually be returned (each in the order they appear in the content).