Horde_Mime_Part::getMetadata PHP Method

getMetadata() public method

Retrieves metadata from this object.
public getMetadata ( string $key ) : mixed
$key string The metadata key.
return mixed The metadata, or null if it doesn't exist.
    public function getMetadata($key)
    {
        return isset($this->_metadata[$key]) ? $this->_metadata[$key] : null;
    }