NetDataContractSerializer.Deserialize(Stream) Method

Definition

Deserializes an XML document or stream into an object.

public:
 virtual System::Object ^ Deserialize(System::IO::Stream ^ stream);
public object Deserialize (System.IO.Stream stream);
abstract member Deserialize : System.IO.Stream -> obj
override this.Deserialize : System.IO.Stream -> obj
Public Function Deserialize (stream As Stream) As Object

Parameters

stream
Stream

A Stream that contains the XML to deserialize.

Returns

The deserialized object.

Implements

Remarks

This method assumes the default format is text XML.

Important

Calling this method with untrusted data is a security risk. Call this method only with trusted data. For more information, see Validate All Inputs.

Applies to