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。