• Модуль: pull
  • Путь к файлу: ~/bitrix/modules/pull/lib/push/message/basemessage.php
  • Класс: BitrixPullPushMessageBaseMessage
  • Вызов: BaseMessage::getCustomProperty
public function getCustomProperty($sName)
{
	if (!array_key_exists($sName, $this->customProperties))
	{
		throw new ArgumentException(
			"No property exists with the specified name '{$sName}'."
		);
	}

	return $this->customProperties[$sName];
}