Note
Access to this page requires authorization. You can try signing in or .
Access to this page requires authorization. You can try .
JsonObject.Insert(Int32, String, JsonNode) Method
Definition
- Namespace:
- System.Text.Json.Nodes
- Assembly:
- System.Text.Json.dll
- Package:
- System.Text.Json v11.0.0-preview.5.26302.115
- Source:
- JsonObject.IList.cs
- Source:
- JsonObject.IList.cs
- Source:
- JsonObject.IList.cs
- Source:
- JsonObject.IList.cs
Important
Some information relates to prerelease product that may be substantially modified before itβs released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Inserts a property into the object at the specified index.
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)
Parameters
- index
- Int32
The zero-based index at which the property should be inserted.
- propertyName
- String
The property name to insert.
- value
- JsonNode
The JSON value to insert.
Exceptions
propertyName is null.
An element with the same key already exists in the JsonObject.
index is less than 0 or greater than Count.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Feedback
Was this page helpful?
