I want to deserialise an object. I saw the following code in msdn.com:
private void DeserializeObject(string filename)
{
Debug.WriteLine("Reading with XmlReader");
// Create an instance of the XmlSerializer specifying type and namespace.
XmlSerializer serializer = new XmlSerializer(typeof(User));
// A FileStream is needed to read the XML document.
FileStream fs = new FileStream(filename, FileMode.Open);
XmlReader reader = XmlReader.Create(filename);
// Declare an object variable of the type to be deserialized.
User i;
// Use the Deserialize method to restore the object's state.
i = (User)serializer.Deserialize(reader);
fs.Close();
// Write out the properties of the object.
Debug.WriteLine(
i.field1+ "\t" +
i.field2+ "\t" +
i.field3+ "\t" +
i.field4);
}
However, I don't want to deserialise a file, but rather an XML stream I get from the server as a response, corresponding code shown here:
HttpWebRequest webRequest = (HttpWebRequest)asynchronousResult.AsyncState;
HttpWebResponse response;
response = (HttpWebResponse)webRequest.EndGetResponse(asynchronousResult);
Stream streamResponse = response.GetResponseStream();
StreamReader streamReader = new StreamReader(streamResponse);
var Response = streamReader.ReadToEnd();
streamResponse.Close();
streamReader.Close();
response.Close();
if (Response == "")
{
//show some error msg to the user
}
else
{
//Your response will be available in "Response"
string mystring = Response.ToString();
//Mytext.Text = mystring;
Debug.WriteLine(mystring);
DeserializeObject("myxml"); <---- call deserialise
}
How can I achieve this? I created a class called "User" according to XML by using the xsd.exe tool.