TempDataSerializer.Deserialize(Byte[]) 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.
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>.