• Модуль: dav
  • Путь к файлу: ~/bitrix/modules/dav/classes/general/groupdavclient.php
  • Класс: CDavGroupdavClient
  • Вызов: CDavGroupdavClient::SetProxy
public function SetProxy($proxyScheme, $proxyServer, $proxyPort, $proxyUserName, $proxyUserPassword)
{
	$this->proxyScheme = mb_strtolower($proxyScheme) === "https" ? "https" : "http";
	$this->proxyServer = $proxyServer;
	$this->proxyPort = $proxyPort;
	$this->proxyUserName = $proxyUserName;
	$this->proxyUserPassword = $proxyUserPassword;

	$this->proxyUsed = ($this->proxyServer <> '' && $this->proxyPort <> '');
}