• Модуль: dav
  • Путь к файлу: ~/bitrix/modules/dav/classes/general/exchangeclient.php
  • Класс: CDavExchangeClient
  • Вызов: CDavExchangeClient::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 <> '');
}