Beispiel #1
0
 public abstract Bys newM(NetwBase rw, byte[] m, int off, int len);
Beispiel #2
0
 /// <summary>
 /// the constructor by base stream.
 /// </summary>
 /// <param name="rwb"></param>
 public NetwImpl(NetwBase rwb)
 {
     this.rwb = rwb;
 }
Beispiel #3
0
 public override Bys newM(NetwBase rw, byte[] m, int off, int len)
 {
     throw new NotImplementedException();
 }
Beispiel #4
0
 public NetwImpl_(NetwBase rwb)
     : base(rwb)
 {
 }
Beispiel #5
0
 public override Bys newM(NetwBase rw, byte[] m, int off, int len)
 {
     return new BysImpl(this, m, off, len);
 }
Beispiel #6
0
 public NetwImpl_T(NetwBase rw)
     : base(rw)
 {
 }