文字列をXMLファイルに変換したい。
XMLデータを別のサーバーに送信し、応答を取得します。
それで、私はこのコードを書きました。
rsp = req.GetResponse();
using (HttpWebResponse response = req.GetResponse() as HttpWebResponse)
{
StreamReader reader = new StreamReader(response.GetResponseStream());
string Response = reader.ReadToEnd();
// This is respons andI want to read it
}
読み方はstring Response
?XML形式です