I get a response string from an API by using this code :
HttpResponseMessage response = await client.GetAsync(url);
string responseText = await response.Content.ReadAsStringAsync();
However I’m unable to find out how to initialize a JsonObject since in .NET for WinRT the constructor JsonObject() doesn’t take any arguments. For memory I could have made like that in the “regular” .NET Framework :
JsonObject root = new JsonObject(responseText);
What I’ve missed ?
If you want to serialize the response as a
JsonObjectyou should useJsonObject.Parse(string)orJsonObject.TryParse(string, out JsonObject)methods.