using System;
using ZeroLevel.Services.Serialization;
namespace ZeroLevel.DocumentObjectModel
{
public sealed class AttachContent
: IBinarySerializable
{
///
/// ID
///
public string Identity;
///
/// Title
///
public string Caption;
///
/// Description (optional)
///
public string Summary;
///
/// Content type
///
public ContentType ContentType;
///
/// Binary content
///
public byte[] Payload;
public AttachContent()
{
}
public AttachContent(IBinaryReader reader)
{
Deserialize(reader);
}
public AttachContent(string identity, ContentType contentType)
{ Identity = identity; ContentType = contentType; }
public AttachContent(string identity, string caption, ContentType contentType)
{ Identity = identity; Caption = caption; ContentType = contentType; }
public AttachContent(string identity, string caption, string description)
{ Identity = identity; Summary = description; Caption = caption; }
public AttachContent Write(T value)
{
this.Payload = MessageSerializer.SerializeCompatible(value);
return this;
}
public T Read()
{
if (this.Payload == null || this.Payload.Length == 0) return default(T);
return MessageSerializer.DeserializeCompatible(this.Payload);
}
#region IBinarySerializable
public void Serialize(IBinaryWriter writer)
{
writer.WriteString(this.Identity);
writer.WriteString(this.Caption);
writer.WriteString(this.Summary);
writer.WriteInt32((Int32)this.ContentType);
writer.WriteBytes(this.Payload);
}
public void Deserialize(IBinaryReader reader)
{
this.Identity = reader.ReadString();
this.Caption = reader.ReadString();
this.Summary = reader.ReadString();
this.ContentType = (ContentType)reader.ReadInt32();
this.Payload = reader.ReadBytes();
}
#endregion IBinarySerializable
}
}