I would like to modify the values AREA1
& AREA2
from the parsed JObject
of the below JSON string.
How can I retrieve the elements with jObject.SelectTokens()
and edit it them?
{
"summary":{
"summaryDataTable":{
"id":"summaryDataTable",
"type":"dataTable",
"source":"/SmartScreen/SummaryFw",
"columns":[
{
"name":"CreateDate",
"title":"AREA1",
"filterable":false
},
{
"name":"CreateUser",
"title":"AREA2",
"filterable":false
}
],
"options":{
"showFilter":false
}
}
}
}