INetServiceProxy.Integrated

Syntax

Integrated: Boolean;

Description

The Integrated property determines whether proxy server system settings are to be used.

Comments

If the property is set to True, proxy server settings specified for operating system browser will be used. The property is set to False by default, own properties are set using the current interface properties.

Example

Add links to the Net system assembly.

Sub UserProc;
Var
    Proxy: INetServiceProxy;
Begin
    Proxy := 
New NetServiceProxy.Create;
    Proxy.Active := 
True;
    Proxy.Integrated := 
True;
    Debug.WriteLine(
"NoProxyString " + Proxy.NoProxyString);
    Debug.WriteLine(
"NoProxyStringOriginal " + Proxy.NoProxyStringOriginal);
    Proxy.Save;
End Sub UserProc;

After executing the example the use of proxy server on working with Internet is enabled. The proxy server will use the system settings determined for the operating system browser. The development environment console displays a list of domains accessed directly.

See also:

INetServiceProxy