Interface for an entity serializer, that translate data in a stream into a real entity and vice-versa. All members must be thread safe (if they are called on different streams).

Namespace:  Cloudster
Assembly:  Cloudster.CoreLib (in Cloudster.CoreLib.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public interface ISerializer<TEntity>
where TEntity : Entity
Visual Basic (Declaration)
Public Interface ISerializer(Of TEntity As Entity)
Visual C++
generic<typename TEntity>
where TEntity : Entity
public interface class ISerializer

Type Parameters

TEntity

[Missing <typeparam name="TEntity"/> documentation for "T:Cloudster.ISerializer`1"]

See Also