How to get encapsulated string included solidus('/') on json?
there is json code and the result is what i don't want
------------------------------------------------------------------------
JsonObject Value = new JsonObject();
Value.Add("Value", JsonValue.CreateStringValue("http://example.org"));
Debug.WriteLine(Value.Stringify());
the result is what i don't want ---> {"Value":"http://example.org"}
------------------------------------------------------------------------
i want to get encapsulated string like below, how to get the string?
------------------------------------------------------------------------
{"Value":"http:\/\/example.org"}
------------------------------------------------------------------------