• Модуль: dav
  • Путь к файлу: ~/bitrix/modules/dav/classes/general/request.php
  • Класс: CDavRequest
  • Вызов: CDavRequest::GetRequestBody
public function GetRequestBody()
{
	if ($this->rawRequestBody == null)
	{
		$this->rawRequestBody = file_get_contents('php://input');

		CDav::Report(
			"<<<<<<<<<<<<<< REQUEST BODY >>>>>>>>>>>>>>>>",
			"n".$this->rawRequestBody."n",
			"UNDEFINED",
			true
		);
	}

	return $this->rawRequestBody;
}