0

当我使用它使用 http 请求发送短信时,我得到了来自 api 的响应,现在我在发送短信时得到了一些响应。我需要从响应中解析“MessageID”。

我正在使用以下代码来阅读响应

   HttpWebResponse webresponse = (HttpWebResponse)myReq.GetResponse();



        Encoding enc = System.Text.Encoding.GetEncoding(1252);
        StreamReader loResponseStream = new
          StreamReader(webresponse.GetResponseStream(), enc);

        string Response = loResponseStream.ReadToEnd();

我在字符串响应中收到的内容如下

<rsp stat=\"ok\">\n<success msg=\"accepted\" transactionid=\"fe417b1b3dd5f68cc99c5df182fe606a\" messageid=\"332b21a2813900a7b81af1635aa1a8d5\"/>\n</rsp>

如何从此响应中解析 transactionid 和消息 id 的值。请告诉我 。谢谢你

4

1 回答 1

2

您可以使用 LINQ to XML:

  var successElement = XElement.Parse(response).Element("success");

  var transactionId = successElement.Attribute("transactionid").Value;
  var messageId = successElement.Attribute("messageid").Value;
于 2013-01-28T08:48:46.017 回答