|
Class: HTTPProxySettings
Object
|
+--HTTPProxySettings
- Package:
- stx:goodies/communication
- Category:
- Net-Communication-HTTP-Client
- Version:
- rev:
1.8
date: 2022/11/21 11:40:18
- user: stefan
- file: HTTPProxySettings.st directory: goodies/communication
- module: stx stc-classLibrary: communication
adopted from see examples in SptHTTPProxySettings
(not much to adapt, though)
copyrightCOPYRIGHT (c) 2011 by eXept Software AG
All Rights Reserved
This software is furnished under a license and may be used
only in accordance with the terms of that license and with the
inclusion of the above copyright notice. This software may not
be provided or otherwise made available to, or used by, any
other person. No title to or ownership of the software is
hereby transferred.
instance creation
-
useHost: aString port: aSmallInteger
-
Modified (format): / 05-10-2011 / 17:16:21 / cg
-
useHost: aString port: aSmallInteger user: userName password: password
-
accessing
-
proxyHost
-
Modified (format): / 05-10-2011 / 17:16:25 / cg
-
proxyHost: aString
-
Modified (format): / 05-10-2011 / 17:16:41 / cg
-
proxyPassword
-
-
proxyPassword: something
-
-
proxyPort
-
Modified (format): / 05-10-2011 / 17:16:42 / cg
-
proxyPort: anInteger
-
Modified (format): / 05-10-2011 / 17:16:44 / cg
-
proxyURL
-
answer an URL for the proxy, to be used in command line ragumnest (e.g. python pip).
Format: scheme://[user:passwd@]proxy.server:port
Usage example(s):
(Expecco::ExpeccoPreferences current expeccoUpdateProxySettings) proxyURL
|
-
proxyUser
-
-
proxyUser: something
-
-
useHost: aString port: aSmallInteger
-
Modified (format): / 05-10-2011 / 17:16:46 / cg
-
useProxy
-
Modified (format): / 05-10-2011 / 17:16:48 / cg
-
useProxy: aBool
-
Modified (format): / 05-10-2011 / 17:16:51 / cg
comparing
-
= aProxySettings
-
(comment from inherited method)
return true if the receiver and the arg have the same structure.
Notice:
This method is partially open coded (inlined) by the compiler(s)
identical objects are always considered equal.
redefining it may not work as expected.
-
hash
-
(comment from inherited method)
return an Integer useful as a hash key for the receiver.
This hash should return same values for objects with same
contents (i.e. use this to hash on structure)
|