[MonoTODO] // FIXME: Check how expanded entity is handled here. public override int ReadContentAsBinHex(byte [] buffer, int offset, int length) { if (entity != null) { return(entity.ReadContentAsBinHex(buffer, offset, length)); } else { return(source.ReadContentAsBinHex(buffer, offset, length)); } }
[MonoTODO] // FIXME: Check how expanded entity is handled here. public override int ReadContentAsBinHex(byte [] buffer, int index, int count) { if (entity != null) { return(entity.ReadContentAsBinHex(buffer, index, count)); } else { return(source.ReadContentAsBinHex(buffer, index, count)); } }