I am creating a javascript object
from a c# object
and one of the properties is a reference to a js function
, but when serializing the object the value has quotes around it witch makes it a normal string and not a function.
this is the current output :
{ "x": "functionNameToBeCalled" }
But I need it to be like
{ "x": functionNameToBeCalled }
Is there anyway to do this with Json.Net
or do I have to create the js object manually?
I tried using the JsonPropertyAttribute
but can't figure out which property to set!!!