Hi Wilsoftson,
There are many different ways you can do this. Like I mentioned all you need to do is get the json data into string or a stream. Here is one such example using a std::istream:
There are many different ways you can do this. Like I mentioned all you need to do is get the json data into string or a stream. Here is one such example using a std::istream:
std::ifstream inputStream("json.data", std::ifstream::in);
::web::json::value v = ::web::json::value::parse(inputStream);
Steve