 | DictionarySerializationContextDeserialize Method (Type, 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 Object Deserialize(
Type type,
Object data
)
Public Function Deserialize (
type As Type,
data As Object
) As Object
public:
Object^ Deserialize(
Type^ type,
Object^ data
)
member Deserialize :
type : Type *
data : Object -> Object
Parameters
- type
- Type: SystemType
Type of the object to deserialize. - data
- Type: SystemObject
Data dictionary containing the values of the object to deserialize.
Return Value
Type:
ObjectObject deserialized from the passed data dictionary.
See Also