TempDataSerializer.Deserialize(Byte[]) Method

Definition

Deserializes unprotectedData to a IDictionary<TKey,TValue> used to initialize an instance of ITempDataDictionary.

public:
 abstract System::Collections::Generic::IDictionary<System::String ^, System::Object ^> ^ Deserialize(cli::array <System::Byte> ^ unprotectedData);
public abstract System.Collections.Generic.IDictionary<string,object> Deserialize (byte[] unprotectedData);
abstract member Deserialize : byte[] -> System.Collections.Generic.IDictionary<string, obj>
Public MustOverride Function Deserialize (unprotectedData As Byte()) As IDictionary(Of String, Object)

Parameters

unprotectedData
Byte[]

Serialized representation of ITempDataDictionary.

Returns

The deserialized IDictionary<TKey,TValue>.

Applies to