• Модуль: dav
  • Путь к файлу: ~/bitrix/modules/dav/classes/general/response.php
  • Класс: CDavResponse
  • Вызов: CDavResponse::AddLine
public function AddLine()
{
	$args = func_get_args();
	if ($this->outputType == DAV_BINARY_OUTPUT)
		$this->body .= array_shift($args);
	else
		$this->body .= vsprintf(array_shift($args), array_values($args))."n";
}