Hi There,
I am struggling with updating the QueueItem after it fails, as i need to record some information when an Application Exception occurs. In this case the QueueItem is a compex nested JSON object which is created after deserialization and read back deserialized into a C# Class. It looks like when i try to update the QueueItem after an Application Exception, only simple Key-Value pairs are accepted (Assuming the type is a dictionary), but not the JSON with nested objects. Below are the 2 secnarios illustrated in a simplified format. Appreciate your inputs.
THIS WORKS
{
"Name": "QueueName",
"Priority": "High",
"SpecificContent": {
"Key": "Value",
"Key": "Value",
}
THIS DOESN’T WORK
{
"Name": "QueueName",
"Priority": "High",
"SpecificContent": { COMPLEX NESTED JSON }
}
Thank you