aspx ページから Web サービスを呼び出そうとしています。Web サービスは json を返します。json オブジェクトを逆シリアル化する必要があります。
文字列を抽出しようとしましたが、次の形式です。
"{ \" d \" : [ { \" _type \" : \" Myclass:#serviceName \", ....other members..}, { ..other records ... }, {...} ] }"
私のコードは次のとおりです。
Stream receivedStream = HttpWResp.GetResponseStream();
Encoding encode = System.Text.Encoding.GetEncoding("utf-8");
StreamReader reader = new StreamReader(receivedStream, encode);
string text = reader.ReadToEnd(); // text shows the above string
次に何をすべきか教えてください。また、このトピックに関するいくつかの優れた記事の参照も役立ちます。
ありがとう