Horde_ActiveSync_Message_Contact::_checkSendEmpty PHP Метод

_checkSendEmpty() защищенный Метод

Check if we should send a specific property even if it's empty.
protected _checkSendEmpty ( string $tag ) : boolean
$tag string The property tag.
Результат boolean
    protected function _checkSendEmpty($tag)
    {
        if ($tag == self::BODYTRUNCATED && $this->bodysize > 0) {
            return true;
        }
        return false;
    }