interface XProxySettings in module com::sun::star::system::

(Global Index)

Syntax

interface XProxySettings : com::sun::star::uno::XInterface ;

Description

Enables access to different proxy settings. If particular settings are not available an empty string will be returned.

Method Summary

getFtpProxyAddress Access to the Ftp proxy address.

getFtpProxyPort Access to the Ftp proxy port.

getGopherProxyAddress Access to the Gopher proxy address.

getGopherProxyPort Access to the Gopher proxy port.

getHttpProxyAddress Access to the Http proxy address.

getHttpProxyPort Access to the Http proxy port.

getHttpsProxyAddress Access to the Https proxy address.

getHttpsProxyPort Access to the Https proxy port.

getSocksProxyAddress Access to the Socks proxy address.

getSocksProxyPort Access to the Socks proxy port.

getProxyBypassAddress Access to the Proxy-Bypass address.

isProxyEnabled Either a proxy is enabled or not.

Known Services Which Export this Interface

com::sun::star::system::ProxySettings

Method Details



getFtpProxyAddress

Syntax

string getFtpProxyAddress ();

Description

Access to the Ftp proxy address.

Returns

The address of the ftp proxy server, if any has been specified.

getFtpProxyPort

Syntax

string getFtpProxyPort ();

Description

Access to the Ftp proxy port.

Returns

The port of the ftp proxy server, if any has been specified.

getGopherProxyAddress

Syntax

string getGopherProxyAddress ();

Description

Access to the Gopher proxy address.

Returns

The address of the gopher proxy server, if any has been specified.

getGopherProxyPort

Syntax

string getGopherProxyPort ();

Description

Access to the Gopher proxy port.

Returns

The port of the gopher proxy server, if any has been specified.

getHttpProxyAddress

Syntax

string getHttpProxyAddress ();

Description

Access to the Http proxy address.

Returns

The address of the http proxy server, if any has been specified.

getHttpProxyPort

Syntax

string getHttpProxyPort ();

Description

Access to the Http proxy port.

Returns

The port of the http proxy server, if any has been specified.

getHttpsProxyAddress

Syntax

string getHttpsProxyAddress ();

Description

Access to the Https proxy address.

Returns

The address of the https proxy server, if any has been specified.

getHttpsProxyPort

Syntax

string getHttpsProxyPort ();

Description

Access to the Https proxy port.

Returns

The port of the https proxy server, if any has been specified.

getSocksProxyAddress

Syntax

string getSocksProxyAddress ();

Description

Access to the Socks proxy address.

Returns

The address of the socks proxy server, if any has been specified.

getSocksProxyPort

Syntax

string getSocksProxyPort ();

Description

Access to the Socks proxy port.

Returns

The port of the socks proxy server, if any has been specified.

getProxyBypassAddress

Syntax

string getProxyBypassAddress ();

Description

Access to the Proxy-Bypass address.

Returns

A string of ';' separated addresses for which no proxy server should be used.

isProxyEnabled

Syntax

boolean isProxyEnabled ();

Description

Either a proxy is enabled or not.

Returns

A value of true if a proxy is enabled.

A value of false if a proxy is disabled.

Top of Page