简体   繁体   中英

Convert HttpResponseMessage To XML to Object

I have defined the Serialization for my Object idAssignmentResult . But how do I convert an HttpResponseMessage that IS XML, to it's class? I am getting an error:

Value of type 'System.Net.Http.HttpContent' cannot be converted to 'System.Xml.XmlReader'

I will do both vb.net and c#

vb.net

    Dim response As New HttpResponseMessage()
        Try
            Using client As New HttpClient()
                Dim request As New HttpRequestMessage(HttpMethod.Post, "url")
                request.Content = New StringContent(stringWriter.ToString, Encoding.UTF8, "application/xml")

                response = client.SendAsync(request).Result
            End Using
        Catch ex As Exception
            lblerror.Text = ex.Message.ToString
        End Try
    Dim responseString = response.Content

    Dim xmls As New XmlSerializer(GetType(idAssignmentResult))
    Dim assignmentResult As New idAssignmentResult()
    xmls.Deserialize(responseString, assignmentResult) /// cannot convert HttpContent to XmlReader

c#

    StringWriter stringWriter = new StringWriter();
    XmlSerializer serializer = new XmlSerializer(typeof(personV3R));
    personV3R person = new personV3R(); serializer.Serialize(stringWriter, person);
    HttpResponseMessage response = new HttpResponseMessage();
    try
    {
        using (HttpClient client = new HttpClient())
        {
            HttpRequestMessage request = new HttpRequestMessage(HttpMethod.Post, "url");
            request.Content = new StringContent(stringWriter.ToString, Encoding.UTF8, "application/xml");
            response = client.SendAsync(request).Result;
        }
    }
    catch (Exception ex)
    {
        lblerror.Text = ex.Message.ToString;
    }

    var responseString = response.Content;

    XmlSerializer xmls = new XmlSerializer(typeof(idAssignmentResult));
    idAssignmentResult assignmentResult = new idAssignmentResult();
    xmls.Deserialize(responseString, assignmentResult);

You shoud do it as

1.

var responseString = await response.Content.ReadAsStringAsync();

2.

var assignmentResult = 
             (idAssignmentResult)xmls.Deserialize(new StringReader(responseString));

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM