示例#1
0
 public TBufferedTransport(TStreamTransport transport, int bufSize)
 {
     this.bufSize   = bufSize;
     this.transport = transport;
     InitBuffers();
 }
示例#2
0
 public TBufferedTransport(TStreamTransport transport)
     : this(transport, 1024)
 {
 }