public SocketImplementation(Socket connection) { this.connection = connection; this.Flux = new NetworkStream(connection); this.reader = new Reader(this.Flux); this.writer = new Writer(this.Flux); }
public Query(Writer writer) { this.writer = writer; }