Click or drag to resize

CsvSerializerT Methods

The CsvSerializerT generic type exposes the following members.

Methods
  NameDescription
Public methodBeginDeserialize(Stream, AsyncCallback, Object)
Begins to deserialize the objects from the specified stream using a default encoding.
(Inherited from SerializerT.)
Public methodBeginDeserialize(String, AsyncCallback, Object)
Begins to deserialize the objects from the specified file using a default encoding.
(Inherited from SerializerT.)
Public methodBeginDeserialize(Stream, Encoding, AsyncCallback, Object)
Begins to deserialize the objects from the specified stream using the specified encoding.
(Inherited from SerializerT.)
Public methodBeginDeserialize(String, Encoding, AsyncCallback, Object)
Begins to deserialize the objects from the specified file using the specified encoding.
(Inherited from SerializerT.)
Public methodBeginSerialize(IEnumerableT, Stream, AsyncCallback, Object)
Begins to serialize the objects to the specified stream using a default encoding.
(Inherited from SerializerT.)
Public methodBeginSerialize(IEnumerableT, String, AsyncCallback, Object)
Begins to serialize the objects to the specified file using a default encoding.
(Inherited from SerializerT.)
Public methodBeginSerialize(IEnumerableT, Stream, Encoding, AsyncCallback, Object)
Begins to serialize the objects to the specified stream using the specified encoding.
(Inherited from SerializerT.)
Public methodBeginSerialize(IEnumerableT, String, Encoding, AsyncCallback, Object)
Begins to serialize the objects to the specified file using the specified encoding.
(Inherited from SerializerT.)
Protected methodDeserialize(StreamReader)
Deserializes a collection of objects using the data that is accessible through the specified stream reader.
(Overrides SerializerTDeserialize(StreamReader).)
Public methodDeserialize(Stream)
Deserializes CSV data to a list of objects using a default encoding of UTF-8.
(Inherited from SerializerT.)
Public methodDeserialize(String)
Deserializes a CSV to a list of objects using a default encoding of UTF-8.
(Inherited from SerializerT.)
Public methodDeserialize(Stream, Encoding)
Deserializes a CSV to a list of objects.
(Inherited from SerializerT.)
Public methodDeserialize(String, Encoding)
Deserializes a CSV to a list of objects.
(Inherited from SerializerT.)
Public methodEndDeserialize
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.
(Inherited from SerializerT.)
Public methodEndSerialize
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.
(Inherited from SerializerT.)
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodSerialize(IEnumerableT, Stream)
Serializes a list of objects to a stream using a default encoding.
(Inherited from SerializerT.)
Public methodSerialize(IEnumerableT, String)
Serializes a list of objects to a file using a default encoding.
(Inherited from SerializerT.)
Protected methodSerialize(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.
(Overrides SerializerTSerialize(IEnumerableT, Encoding, Stream).)
Public methodSerialize(IEnumerableT, Stream, Encoding)
Serializes a list of objects to a stream.
(Inherited from SerializerT.)
Public methodSerialize(IEnumerableT, String, Encoding)
Serializes a list of objects to a file.
(Inherited from SerializerT.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also