|
SetProxyAuthenticationData procedure |
|
|
EurekaLog includes a procedure called SetProxyAuthenticationData, that enables you to set the Proxy UserID and Password.
Syntax of this function is as follows:
procedure SetProxyAuthenticationData(const UserID, Password: string);
Example:
uses EWebTools; // The required unit...
begin ... SetProxyAuthenticationData('proxy_username', 'proxy_password'); ... end; |