
i have this error using the activity “Deserialize JSON Array” , my input variable is an JObject, and i want to use the data from my json.
let us know if the set programming language is not set to VB.Net
Maybe you can also share your JSON
About the second Deserialiaziation:
when a JSON contains a JArray as nested value, we can also avoid the second JArray Deserialization activity e.g by
myJObjectVar("myPropertyKey").Values(Of JObject)
and get back all array items e.g as JObjects and can use it for further processings (Loop, For each, LINQ…)
when project is set to C# then try: DJson["results"].ToString()
Looks like language syntax issue. If your project is on C# you should be giving index with brackets. Here you code is considering ( ) brackets as method which is right for C#.
Try with this:
DJson["results"].ToString
Thanks,
Ashok ![]()
that’s works! thank you
C# is strict: we mentioned:
() is missing
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.
