IDataSerializer<TModel>.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 the specified data
as an instance of type TModel
.
public:
TModel Deserialize(cli::array <System::Byte> ^ data);
public TModel Deserialize (byte[] data);
public TModel? Deserialize (byte[] data);
abstract member Deserialize : byte[] -> 'Model
Public Function Deserialize (data As Byte()) As TModel
Parameters
- data
- Byte[]
The bytes being deserialized.
Returns
TModel
The model.