Horde_Imap_Client_Socket::__get PHP Method

__get() public method

public __get ( $name )
    public function __get($name)
    {
        switch ($name) {
            case 'search_charset':
                if (!isset($this->_init['search_charset']) && $this->_capability()->isEnabled('UTF8=ACCEPT')) {
                    $this->_init['search_charset'] = new Horde_Imap_Client_Data_SearchCharset_Utf8();
                }
                break;
        }
        return parent::__get($name);
    }