If I run an "insert entity" request with a body like:
{
"PartitionKey":[PartitionKey]",
"RowKey":"[RowKey]",
"Message":"[Message]"
}
What do I do if [Message]
contains "strange" characters, e.g.
",\n invalidinvalidinvalid
Is there a way to escape the values so that they are still parsed correctly by Azure? Will typical HTML escaping accomplish this?
Thanks!