Example #1
0
 public BufferUnit(byte[] buffer, int offset, int length)
 {
     Buffer = buffer;
     Offset = offset;
     Length = length;
     Status = BufferUnitStatus.Free;
 }
Example #2
0
 public void Free()
 {
     Status = BufferUnitStatus.Free;
 }