共用方式為


JsonObject.Insert(Int32, String, JsonNode) 方法

定義

將屬性插入物件中指定的索引處。

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)

參數

index
Int32

應該插入屬性之以零起始的索引。

propertyName
String

要插入的屬性名稱。

value
JsonNode

要插入的 JSON 值。

例外狀況

propertyName null

具有相同索引鍵的專案已存在於 JsonObject中。

index 小於 0 或大於 Count

適用於