JsonElement.ObjectEnumerator.GetEnumerator Método
Definição
Retorna um enumerador que itera pelas propriedades de um objeto.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
Retornos
Um enumerador que pode ser usado para iterar pelo objeto.An enumerator that can be used to iterate through the object.
Comentários
O enumerador enumerará as propriedades na ordem em que elas são declaradas e quando um objeto tiver várias definições de uma única propriedade, todas elas serão retornadas individualmente (cada uma na ordem em que aparecem no conteúdo).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).