AppserverIo\Appserver\ServletEngine\Http\Request::getPart PHP Method

getPart() public method

Returns a part object by given name
public getPart ( string $name ) : AppserverIo\Http\HttpPart
$name string The name of the form part
return AppserverIo\Http\HttpPart
    public function getPart($name)
    {
        if (isset($this->parts[$name])) {
            return $this->parts[$name];
        }
    }