Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

NetDataContractSerializer.Deserialize(Stream) Method

Definition

Namespace:
System.Runtime.Serialization
Assembly:
System.Runtime.Serialization.dll

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.

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


Feedback

Was this page helpful?