getExternalProxyHost
string session.getExternalProxyHost ( )
Description
Retrieve the external proxy host.
Parameters
This method does not receive any parameters.
Return Values
Returns the external host, as a string.
Change Log
Version | Description |
---|---|
5.0 | Available for all editions. |
Examples
Log External Proxy Settings
// Log External Proxy Settings
session.log( "Username: " + session.getExternalProxyUsername( ) );
session.log( "Password: " + session.getExternalProxyPassword( ) );
session.log( "Host: " + session.getExternalProxyHost( ) );
session.log( "Port: " + session.getExternalProxyPort( ) );
session.log( "Username: " + session.getExternalProxyUsername( ) );
session.log( "Password: " + session.getExternalProxyPassword( ) );
session.log( "Host: " + session.getExternalProxyHost( ) );
session.log( "Port: " + session.getExternalProxyPort( ) );
See Also
- setExternalProxyHost() [session] - Sets the external proxy host
- getExternalProxyPassword() [session] - Gets the external proxy password
- getExternalProxyPort() [session] - Gets the external proxy port
- getExternalProxyUsername() [session] - Gets the external proxy username
scraper on 08/10/2010 at 11:14 am
- Printer-friendly version
- Login or register to post comments