@ -61,15 +61,9 @@ namespace WebSocketSharp.Net
#region Public Properties
public int Length {
public int ReadLeft {
get {
return _data.Length;
}
public int Offset {
return _offset;
return _data.Length - _offset;
@ -134,7 +134,7 @@ namespace WebSocketSharp.Net
if (chunk == null)
continue;
if (chunk.Offset == chunk.Length) {
if (chunk.ReadLeft == 0) {
_chunks [i] = null;