You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel/Services/Network/LongRequest.cs

32 lines
767 B

using ZeroLevel.Services.Serialization;
namespace ZeroLevel.Services.Network
{
public class LongRequest<T>
: IBinarySerializable
{
public LongRequest() { }
public LongRequest<T> Create(T value, string inbox) => new LongRequest<T>
{
Body = value,
Inbox = inbox
};
public T Body { get; set; }
public string Inbox { get; set; }
public void Deserialize(IBinaryReader reader)
{
this.Inbox = reader.ReadString();
this.Body = reader.ReadCompatible<T>();
}
public void Serialize(IBinaryWriter writer)
{
writer.WriteString(this.Inbox);
writer.WriteCompatible<T>(this.Body);
}
}
}

Powered by TurnKey Linux.