다음을 통해 공유


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

속성을 삽입해야 하는 인덱스(0부터 시작)입니다.

propertyName
String

삽입할 속성 이름입니다.

value
JsonNode

삽입할 JSON 값입니다.

예외

propertyName null.

키가 같은 요소가 이미 JsonObject있습니다.

index 0보다 작거나 Count.

적용 대상