JsonObject.Insert(Int32, String, JsonNode) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將屬性插入物件中指定的索引處。
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。