Interface IDeserializer
Classes implementing this interface are used by the serializer to determine how the type should be deserialized.
Namespace: InsaneScatterbrain.Serialization
Syntax
public interface IDeserializer
Properties
Type
The type to deserialize.
Declaration
Type Type { get; }
Property Value
Type | Description |
---|---|
System.Type |
Methods
Deserialize(string)
Deserializes the string to object.
Declaration
object Deserialize(string serializedObj)
Parameters
Type | Name | Description |
---|---|---|
string | serializedObj | The serialized string. |
Returns
Type | Description |
---|---|
object |