SerializerT Class |
Namespace: Enkoni.Framework.Serialization
The SerializerT type exposes the following members.
Name | Description | |
---|---|---|
![]() | SerializerT | Initializes a new instance of the SerializerT class. |
![]() | SerializerT(TransformerT) | Initializes a new instance of the SerializerT class. |
Name | Description | |
---|---|---|
![]() | DefaultEncoding | Gets or sets the default encoding that will be used when no encoding is specified. |
![]() | Transformer | Gets or sets the transformer that transforms single objects into a specific format. |
Name | Description | |
---|---|---|
![]() | BeginDeserialize(Stream, AsyncCallback, Object) | Begins to deserialize the objects from the specified stream using a default encoding. |
![]() | BeginDeserialize(String, AsyncCallback, Object) | Begins to deserialize the objects from the specified file using a default encoding. |
![]() | BeginDeserialize(Stream, Encoding, AsyncCallback, Object) | Begins to deserialize the objects from the specified stream using the specified encoding. |
![]() | BeginDeserialize(String, Encoding, AsyncCallback, Object) | Begins to deserialize the objects from the specified file using the specified encoding. |
![]() | BeginSerialize(IEnumerableT, Stream, AsyncCallback, Object) | Begins to serialize the objects to the specified stream using a default encoding. |
![]() | BeginSerialize(IEnumerableT, String, AsyncCallback, Object) | Begins to serialize the objects to the specified file using a default encoding. |
![]() | BeginSerialize(IEnumerableT, Stream, Encoding, AsyncCallback, Object) | Begins to serialize the objects to the specified stream using the specified encoding. |
![]() | BeginSerialize(IEnumerableT, String, Encoding, AsyncCallback, Object) | Begins to serialize the objects to the specified file using the specified encoding. |
![]() | Deserialize(Stream) | Deserializes CSV data to a list of objects using a default encoding of UTF-8. |
![]() | Deserialize(StreamReader) | Deserializes a collection of objects using the data that is accessible through the specified stream reader. |
![]() | Deserialize(String) | Deserializes a CSV to a list of objects using a default encoding of UTF-8. |
![]() | Deserialize(Stream, Encoding) | Deserializes a CSV to a list of objects. |
![]() | Deserialize(String, Encoding) | Deserializes a CSV to a list of objects. |
![]() | EndDeserialize | Waits for the pending asynchronous deserialize operation to complete. If an exception was thrown during the execution of the
asynchronous operation, it is rethrown when invoking this method. |
![]() | EndSerialize | Waits for the pending asynchronous serialize operation to complete. If an exception was thrown during the execution of the
asynchronous operation, it is rethrown when invoking this method. |
![]() | Equals | (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | Serialize(IEnumerableT, Stream) | Serializes a list of objects to a stream using a default encoding. |
![]() | Serialize(IEnumerableT, String) | Serializes a list of objects to a file using a default encoding. |
![]() | Serialize(IEnumerableT, Stream, Encoding) | Serializes a list of objects to a stream. |
![]() | Serialize(IEnumerableT, String, Encoding) | Serializes a list of objects to a file. |
![]() | Serialize(IEnumerableT, Encoding, Stream) | Serializes a collection of items by transforming each item using the Transformer property and writing the
transformed item to the stream. Each item will be separated using the new line character(s) of the current environment.
|
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |