 | DictionarySerializationContextDeserializeT Method (Object) |
Deserializes the object from the passed data dictionary.
Namespace: Slash.Serialization.DictionaryAssembly: Slash.Serialization (in Slash.Serialization.dll) Version: 1.0.6018.40176
Syntaxpublic T Deserialize<T>(
Object data
)
Public Function Deserialize(Of T) (
data As Object
) As T
public:
generic<typename T>
T Deserialize(
Object^ data
)
member Deserialize :
data : Object -> 'T
Parameters
- data
- Type: SystemObject
Data dictionary containing the values of the object to deserialize.
Type Parameters
- T
- Type of the object to deserialize.
Return Value
Type:
TObject deserialized from the passed data dictionary.
See Also