Serialization Class

Class for serialization methods.

Definition

Namespace: Aliquo.Core
Assembly: Aliquo.Core (in Aliquo.Core.dll) Version: 5.0.9179.22651
C#
public class Serialization
Inheritance
Object    Serialization

Constructors

SerializationInitializes a new instance of the Serialization class

Methods

CloneT Clone a serializable object.
DeserializeDataSet Deserialize the XML into a DataSet.
DeserializeObject Deserializes the xml into the indicated object type.
DeserializeObjectFromFile Deserializes the xml into the indicated object type.
IsJsonArray Indicates whether the value is a JSON array (JArray) type.
JsonArrayToObjectT Converts a JSON array to the indicated object type.
JsonDeserializeObjectT(String) Deserialize a JSON string to the indicated object type.
JsonDeserializeObjectT(String, Object) Deserialize a JSON string to the indicated object type.
JsonDeserializeObjectFromFileT Deserializes a JSON string contained in a file into the indicated object type.
JsonDeserializeObjectHandlingTypeNamesT Deserialize a JSON string into the indicated object type, using the type names saved in the serialization.
JsonSerializeObject(Object) Serializes an object to a JSON string.
JsonSerializeObject(Object, Boolean, Boolean, Boolean) Serializes an object to a JSON string.
JsonSerializeObjectHandlingTypeNames Serializes an object to a JSON string saving the names of the serialized types.
JsonSerializeObjectToFile Serializes an object to a JSON string that is saved to the indicated file.
SerializeDataSet Serialize a DataSet.
SerializeObject Serialize an object.
SerializeObjectToFile Serializes an object to a file.

Extension Methods

GetAttributeFromT Get attribute from a class.
(Defined by ObjectExtensions)
ValidateDataAnnotations Validate class with validator of DataAnnotations.
(Defined by ObjectExtensions)

See Also