Loading...
Select Version
Function: |
Reads all the properties of the specified proxy and returns a dictionary with key value pairs for the properties. |
Parameters: |
Proxy whose properties you want to read. |
Return: | Dictionary with the key-value pairs for all the properties of the proxy (see Properties of a proxy ). |
Exceptions: |
|
Example: | ... import BcAdminMain import BcAdminProxy ... bcproxies=BcAdminMain.getList("proxy") proxy_obj=bcproxies["BCProxy"] proxyProps=BcAdminProxy.getProperties(proxy_obj) ... |