public JPBlob getJPBlob() { int length = getInt(); JPBlob result = new JPBlob(); result.Buffer = getBytes(length); return(result); }
public void putJPBlob(JPBlob blob) { putInt(blob.Buffer.Length); putBytes(blob.Buffer); }
public JPBlob getJPBlob() { int length = getInt(); JPBlob result = new JPBlob(); result.Buffer = getBytes(length); return result; }