我想在restsharp中将JSONBody输入到方法AddJsonBody中。我使用这种方式,但是由于特殊字符“:”而在键入VBSH:TenDV时遇到语法错误。因此,如何解决仍要这样做的问题(我可以使用JSONBody String)
requestCreateNode.AddJsonBody(
new { name = FileName,
nodeType = "cm:content",
relativePath = relativePath,
properties = new {
VBSH:TenDV = "DichVuA"//syntax error
}
});