-
Notifications
You must be signed in to change notification settings - Fork 0
JsonPathManager.Add(string path, object value) Method
Shuzhao Feng edited this page Jan 24, 2024
·
6 revisions
Add a value to the JsonPathManager tree.
If you're using v0.3.0 and above, this method is equivalent to JsonPathManager.Add(string path, object value, Priority priority) with Priority.Normal.
JsonPathManager.Add(string path, object value);JsonPathManager instance = new JsonPathManager();
instance.Add("$.path.to.location", "value");The path to the location where the value should be added.
See JsonPathSerializer Supported Paths.
The value to add at the location specified by the path.
v0.1.0 (unstable) and above
- v0.3.0
- v0.2.0
- v0.1.2
- v0.1.0 (unstable)