JsonObject.Insert(Int32, String, JsonNode) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Insère une propriété dans l’objet à l’index spécifié.
public:
void Insert(int index, System::String ^ propertyName, System::Text::Json::Nodes::JsonNode ^ value);
public void Insert (int index, string propertyName, System.Text.Json.Nodes.JsonNode? value);
member this.Insert : int * string * System.Text.Json.Nodes.JsonNode -> unit
Public Sub Insert (index As Integer, propertyName As String, value As JsonNode)
Paramètres
- index
- Int32
Index de base zéro auquel la propriété doit être insérée.
- propertyName
- String
Nom de propriété à insérer.
- value
- JsonNode
Valeur JSON à insérer.
Exceptions
propertyName
est null
.
Un élément avec la même clé existe déjà dans la JsonObject.
index
est inférieur à 0 ou supérieur à Count.