Prado\Web\UI\ActiveControls\TCallbackClientScript::getRenderedContentBoundary PHP Метод

getRenderedContentBoundary() приватный Метод

Renders the control and return the content boundary from TCallbackResponseWriter. This method should only be used by framework component developers. The render() method is defered to be called in the TActivePageAdapter class.
private getRenderedContentBoundary ( $control ) : string
Результат string the boundary for which the rendered content is wrapped.
    private function getRenderedContentBoundary($control)
    {
        $writer = $this->getResponse()->createHtmlWriter();
        $adapter = $control->getPage()->getAdapter();
        $adapter->registerControlToRender($control, $writer);
        return $writer->getWriter()->getBoundary();
    }