an implementation of an input/output stream over a transport
Inheritance: Stream
示例#1
0
文件: Transports.cs 项目: zlorb/agnos
 public BaseTransport(Stream inStream, Stream outStream)
 {
     this.inStream  = inStream;
     this.outStream = outStream;
     asInputStream  = new TransportStream(this, false);
     asOutputStream = new TransportStream(this, true);
 }
示例#2
0
 public BaseTransport(Stream inStream, Stream outStream)
 {
     this.inStream = inStream;
     this.outStream = outStream;
     asInputStream = new TransportStream (this, false);
     asOutputStream = new TransportStream (this, true);
 }