Click or drag to resize

TransformerT Class

Represents a transformer that transforms an instance of T into a byte array or string and vice versa.
Inheritance Hierarchy
SystemObject
  Enkoni.Framework.SerializationTransformerT
    Enkoni.Framework.SerializationCsvTransformerT

Namespace:  Enkoni.Framework.Serialization
Assembly:  Enkoni.Framework.Serialization (in Enkoni.Framework.Serialization.dll) Version: 1.3.0.1
Syntax
public abstract class Transformer<T>

Type Parameters

T
The type that must be transformed.

The TransformerT type exposes the following members.

Constructors
  NameDescription
Protected methodTransformerT
Initializes a new instance of the TransformerT class.
Top
Methods
  NameDescription
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 methodFromBytes(Byte, Encoding)
Transforms the content of a byte array into an instance of type T.
Public methodFromBytes(Byte, Int32, Int32, Encoding)
Transforms the content of a byte array into an instance of type T.
Protected methodFromBytesCore(Byte, Encoding)
Transforms the content of a byte array into an instance of type T.
Protected methodFromBytesCore(Byte, Int32, Int32, Encoding)
Transforms the content of a byte array into an instance of type T.
Public methodFromString
Transforms a string value into an instance of type T.
Protected methodFromStringCore
Transforms a string value into an instance of type T.
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 methodToBytes(T, Encoding)
Transforms instance into a byte array.
Public methodToBytes(T, Encoding, Byte, Int32)
Transforms instance into a byte array.
Protected methodToBytesCore(T, Encoding)
Transforms instance into a byte array.
Protected methodToBytesCore(T, Encoding, Byte, Int32)
Transforms instance into a byte array.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodToString(T)
Transforms instance into a string.
Protected methodToStringCore
Transforms instance into a string.
Top
See Also