3

OK、これは Google を完全に困惑させました。応答を読み取ることができる WebClient.OpenWriteTaskAsync の例はありますか? リクエストの書き方と例外的なケースの処理方法は理解していますが、レスポンスの読み方がわかりません。

try 
{
    using (var stream = await client.OpenWriteTaskAsync(url,method))
    {
      new XmlSerializer(sometype).Serialize(someobject,stream);
    }
    // at this point the request has been sent - how to get at the response data?
}
catch (WebException wex)
{
    // handle exception
}
4

0 に答える 0