Object obj = data.getObject();
boolean notAmqpValue = Proton.pn_message_is_inferred(_impl);
if(notAmqpValue && dataType == DataType.BINARY)
{
section = new Data((Binary)obj);
}
else if(notAmqpValue && dataType == DataType.LIST)
{
section = new AmqpSequence((List)obj);
}