using Esiur.Core; using Esiur.Data; using System; using System.Collections.Generic; using System.Text; namespace Esiur.Net { public class SendList : BinaryList { NetworkConnection connection; IAsyncReply reply; public SendList(NetworkConnection connection, IAsyncReply reply) { this.reply = reply; this.connection = connection; } public override IAsyncReply Done() { connection.Send(this.ToArray()); return reply; } } }