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

	$this->connected = false;
	$this->debug = false;

	$this->proxyScheme = null;
	$this->proxyServer = null;
	$this->proxyPort = null;
	$this->proxyUserName = null;
	$this->proxyUserPassword = null;
	$this->proxyUsed = false;
}