A default serializer, using the .NET binary serialization process. Requires TEntity to have the [Serializable] attribute. It cannot be used because of Windows azure security policy unless you have full trust rights.

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

Syntax

C#
public class DefaultSerializer<TEntity> : ISerializer<TEntity>
where TEntity : Entity
Visual Basic (Declaration)
Public Class DefaultSerializer(Of TEntity As Entity) _
	Implements ISerializer(Of TEntity)
Visual C++
generic<typename TEntity>
where TEntity : Entity
public ref class DefaultSerializer : ISerializer<TEntity>

Type Parameters

TEntity
The type of entity to store/load

Inheritance Hierarchy

System..::.Object
  Cloudster..::.DefaultSerializer<(Of <(TEntity>)>)

See Also