|
|
Serialization Methods |
The Serialization type exposes the following members.
| Name | Description | |
|---|---|---|
|
|
CloneObjectT |
Creates a clone of a serializable object.
Obsolete |
|
|
DeserializeT(Byte, SerializationFormat) | Deserializes a serialized Object. |
|
|
DeserializeT(Stream, SerializationFormat) | Deserializes a serialized Object. |
|
|
GetBytes |
Performs binary serialization on the serializable object and returns the output as byte array.
Obsolete |
|
|
GetObject(Byte) |
Performs binary deserialization on the byte array and returns the object for it.
Obsolete |
|
|
GetObjectT(Byte) |
Performs binary deserialization on the byte array and returns the typed object for it.
Obsolete |
|
|
GetObjectT(String) |
Performs XML deserialization on the XML string and returns the typed object for it.
Obsolete |
|
|
GetOrDefaultT | Gets SerializationInfo value for specified name; otherwise defaultValue. |
|
|
GetStream |
Performs binary serialization on the serializable object and returns the serialized object as a stream.
Obsolete |
|
|
GetString |
Performs XML serialization on the serializable object and returns the output as string.
Obsolete |
|
|
GetValues | Gets values of a SerializationInfo instance compatible with Linq operations. |
|
|
SerializeT(T, SerializationFormat) | Serializes an Object. |
|
|
SerializeT(T, SerializationFormat, Stream) | Serializes an Object. |
|
|
TryDeserializeT(Byte, SerializationFormat, T) | Attempts to deserialize a serialized Object. |
|
|
TryDeserializeT(Stream, SerializationFormat, T) | Attempts to deserialize a serialized Object. |
|
|
TryGetObject(Byte, Object) |
Attempts binary deserialization on the byte array and returns the typed object for it.
Obsolete |
|
|
TryGetObjectT(Byte, T) |
Attempts binary deserialization on the byte array and returns the typed object for it.
Obsolete |
|
|
TryGetObjectT(String, T) |
Attempts XML deserialization on the XML string and returns the typed object for it.
Obsolete |