OutputCache.Deserialize(Stream) Method

Definition

Deserializes a binary object into output-cache data.

public:
 static System::Object ^ Deserialize(System::IO::Stream ^ stream);
public static object Deserialize (System.IO.Stream stream);
static member Deserialize : System.IO.Stream -> obj
Public Shared Function Deserialize (stream As Stream) As Object

Parameters

stream
Stream

The data to deserialize.

Returns

An object that contains the deserialized data.

Exceptions

The deserialized object that is returned by the method is not a valid output-cache type.

stream is null.

Remarks

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.

This method is used by output-cache providers that are operating under partial trust.

Applies to