getExternalProxyPassword
string session.getExternalProxyPassword ( )
Description
Retrieve the external proxy password.
Parameters
This method does not receive any parameters.
Return Values
Returns the external password, 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
- setExternalProxyPassword() [session] - Sets the external proxy password
- getExternalProxyHost() [session] - Gets the external proxy host
- getExternalProxyPort() [session] - Gets the external proxy port
- getExternalProxyUsername() [session] - Gets the external proxy username
scraper on 08/10/2010 at 11:13 am
- Printer-friendly version
- Login or register to post comments