XmlReturnReader.Read(WebResponse, Stream) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a return value deserialized from an XML document contained in the HTTP response.
public:
override System::Object ^ Read(System::Net::WebResponse ^ response, System::IO::Stream ^ responseStream);
public override object Read (System.Net.WebResponse response, System.IO.Stream responseStream);
override this.Read : System.Net.WebResponse * System.IO.Stream -> obj
Public Overrides Function Read (response As WebResponse, responseStream As Stream) As Object
Parameters
- response
- WebResponse
An HttpRequest object containing the output message for an operation.
- responseStream
- Stream
A Stream whose content is the body of the HTTP response represented by the response
parameter.
Returns
A return value deserialized from an XML document contained in the HTTP response.
Remarks
To deserialize the XML content of the HTTP response, the XmlReturnReader class's implementation of the Read method uses the XmlSerializer object passed as an argument to the Initialize method. It throws an exception if the HTTP response's MIME content type is not text/xml
. The method closes the response before returning the deserialized Web method return value.